.navmenu height fix

The `.navmenu` height needs to be set to `auto` in order to allow the `top` and `bottom` values to properly work. The `top` value works fine, but the `bottom` value is rendered inert because the `height: 100%` causes the `.navmenu` to overflow down through the viewport.
This commit is contained in:
Evan Bovie
2014-05-03 09:34:13 -04:00
committed by Arnold Daniels
parent decfa2b28d
commit 1c434d9067

View File

@@ -10,7 +10,7 @@
.navmenu,
.navbar-offcanvas {
width: @navmenu-width;
height: 100%;
height: auto;
border-width: 1px;
border-style: solid;
border-radius: @border-radius-base;