Skip to content
Snippets Groups Projects
Commit 8f22f08f authored by Kasalehlia's avatar Kasalehlia
Browse files

correct padding for body on different menu heights (fixes #3)

parent 2cdc1437
No related branches found
No related tags found
No related merge requests found
......@@ -13,11 +13,16 @@ footer {
}
@media(min-width:768px) {
body {
padding-top: 130px; /* Required padding for .navbar-fixed-top. Change if height of navigation changes. */
}
}
@media(min-width:992px) {
body {
padding-top: 90px; /* Required padding for .navbar-fixed-top. Change if height of navigation changes. */
}
}
@media(min-width:994px) {
@media(min-width:1200px) {
body {
padding-top: 50px; /* Required padding for .navbar-fixed-top. Change if height of navigation changes. */
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment