ソースを参照

Merge pull request #3226 from qsomazzi/sticky_mobile

Fix issue with sticky header on mobile
Thomas 9 年 前
コミット
7d80ecd287
1 ファイル変更7 行追加1 行削除
  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;
+    }
+}