Browse Source

Merge pull request #3226 from qsomazzi/sticky_mobile

Fix issue with sticky header on mobile
Thomas 9 years ago
parent
commit
7d80ecd287
1 changed files with 7 additions and 1 deletions
  1. 7 1
      Resources/public/css/layout.css

+ 7 - 1
Resources/public/css/layout.css

@@ -363,4 +363,10 @@ body.fixed .content-header .navbar.stuck {
     margin-bottom: 0;
     z-index: 1;
     border-radius: 0;
-}
+}
+
+@media(max-width:768px) {
+    body.fixed .content-header .navbar.stuck {
+        top:100px;
+    }
+}