Commit 36f60982 authored by Annabel Dunstone's avatar Annabel Dunstone

Fix media queries for absolutely positioned nav element

parent 8eb31c40
...@@ -22,7 +22,7 @@ header { ...@@ -22,7 +22,7 @@ header {
} }
&.navbar-gitlab { &.navbar-gitlab {
padding: 0 20px; padding: 0 16px;
z-index: 100; z-index: 100;
margin-bottom: 0; margin-bottom: 0;
min-height: $header-height; min-height: $header-height;
......
...@@ -201,9 +201,13 @@ ...@@ -201,9 +201,13 @@
border-bottom: 1px solid $border-color; border-bottom: 1px solid $border-color;
transition-duration: .3s; transition-duration: .3s;
.container-fluid {
position: relative;
}
.controls { .controls {
float: right; float: right;
padding: 7px 5px 0 0; padding: 7px 0 0;
i { i {
color: $layout-link-gray; color: $layout-link-gray;
......
...@@ -323,11 +323,17 @@ ...@@ -323,11 +323,17 @@
} }
.layout-nav { .layout-nav {
padding-right: $sidebar_width;
@media (max-width: $screen-xs-min) { @media (max-width: $screen-xs-min) {
padding-right: 0;; padding-right: 0;;
} }
@media (min-width: $screen-xs-min) and (max-width: $screen-md-min) {
padding-right: 62px;
}
@media (min-width: $screen-md-min) {
padding-right: $sidebar_width;
}
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment