1 files changed, 15 insertions, 15 deletions
diff --git a/uploader/static/css/layout-common.css b/uploader/static/css/layout-common.css
index 88e580c..9c9d034 100644
--- a/uploader/static/css/layout-common.css
+++ b/uploader/static/css/layout-common.css
@@ -2,20 +2,20 @@
box-sizing: border-box;
}
- body {
- display: grid;
- grid-gap: 1em;
- }
+body {
+ display: grid;
+ grid-gap: 1em;
+}
- #header {
- margin: -0.7em; /* Fill entire length of screen */
- /* Define layout for the children elements */
- display: grid;
- }
+#header {
+ margin: -0.7em; /* Fill entire length of screen */
+ /* Define layout for the children elements */
+ display: grid;
+}
- #header #header-nav {
- /* Place it in the parent element */
- grid-column-start: 1;
- grid-column-end: 2;
- display: flex;
- }
+#header #header-nav {
+ /* Place it in the parent element */
+ grid-column-start: 1;
+ grid-column-end: 2;
+ display: flex;
+}
|