Fix menu on mobile
authorChocobozzz <me@florianbigard.com>
Wed, 5 Sep 2018 08:19:45 +0000 (10:19 +0200)
committerChocobozzz <me@florianbigard.com>
Wed, 5 Sep 2018 08:19:45 +0000 (10:19 +0200)
client/src/app/menu/menu.component.scss
client/src/sass/application.scss

index 4ef330b2f5a5ae585ee6d97f2443ad933f3a4ea3..c725580d144abfafc98bc5446d31a9dbed4a3c26 100644 (file)
@@ -20,16 +20,12 @@ menu {
   color: $menu-color;
   display: flex;
   flex-direction: column;
+  width: 100%;
 
   &:focus, &:hover {
     overflow-y: auto;
   }
 
-  .top-menu {
-    flex-grow: 1;
-    width: $menu-width;
-  }
-
   .logged-in-block {
     height: 100px;
     background-color: rgba(255, 255, 255, 0.15);
@@ -230,3 +226,14 @@ menu {
     }
   }
 }
+
+@media screen and (max-width: 400px) {
+  .menu-wrapper {
+    width: 100% !important;
+    z-index: 10000;
+  }
+
+  .top-menu {
+    width: 100%;
+  }
+}
index b92036de78c5c0b6313a036544cc895eae4e0657..c380fe5bfc900dfc8e29961609a7b559bc444feb 100644 (file)
@@ -338,15 +338,6 @@ table {
 }
 
 @media screen and (max-width: 600px) {
-  .menu-wrapper {
-    width: 100% !important;
-    z-index: 10000;
-  }
-
-  menu {
-    width: $menu-width;
-  }
-
   .main-col {
     margin-left: 0;
 
@@ -367,10 +358,4 @@ table {
       }
     }
   }
-}
-
-@media screen and (max-width: 400px) {
-  menu {
-    width: 100%;
-  }
-}
+}
\ No newline at end of file