Skip to content
Snippets Groups Projects
Commit c958edba authored by Patrick Jentsch's avatar Patrick Jentsch
Browse files

Fix wrong offset for navbar elements.

parent 64fb17f1
No related branches found
No related tags found
No related merge requests found
...@@ -23,13 +23,13 @@ main { ...@@ -23,13 +23,13 @@ main {
* case header, main and footer) gets an offset equal to the width of the * case header, main and footer) gets an offset equal to the width of the
* sidenav. * sidenav.
*/ */
header, main, footer { @media only screen and (min-width : 993px) {
padding-left: 300px;
}
@media only screen and (max-width : 992px) {
header, main, footer { header, main, footer {
padding-left: 0; padding-left: 300px;
}
.navbar-fixed > nav {
width: calc(100% - 300px)
} }
} }
/* ### End sidenav-fixed offset ### */ /* ### End sidenav-fixed offset ### */
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