Fix toggle button always showing up

This commit is contained in:
Joe Fiorini 2015-05-29 08:57:39 -04:00
parent b3e8bdbf11
commit 0a8be8243f

View File

@ -27,7 +27,7 @@
}
@media screen and (min-width: @menu-breakpoint + 1px) {
@media screen and (min-width: (@menu-breakpoint + 1px)) {
padding: 0 1rem;
}
@ -36,10 +36,10 @@
}
&-toggle {
@media screen and (min-width: @menu-breakpoint + 1px) {
display: flex;
@media screen and (min-width: (@menu-breakpoint + 1px)) {
display: none;
}
display: flex;
margin-left: auto;
}