Merge pull request #136 from ZeusWPI/align

Align search
This commit is contained in:
Wout Schellaert 2016-12-15 13:34:30 +01:00 committed by GitHub
commit bc0d536344

View file

@ -30,6 +30,10 @@
width: 100px;
}
}
//Height of the line underneath when hovering over a menu item
$border-height: 3px;
.nav {
height: 100%;
align-items: flex-end;
@ -42,7 +46,7 @@
font-size: 1.15em;
&:not(.nav-search) {
border-bottom: 3px solid transparent;
border-bottom: $border-height solid transparent;
border-top: 3px solid transparent;
}
@ -59,5 +63,9 @@
border-bottom-color: $zeus-orange;
}
}
.nav-search {
margin-bottom: $border-height;
}
}
}