소스 검색

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;
+    }
+}