From 662c5e2b3adb872f424afb88f780c96645d14176 Mon Sep 17 00:00:00 2001 From: Evan Bovie Date: Sat, 3 May 2014 09:34:13 -0400 Subject: [PATCH] .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. --- less/navmenu.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/less/navmenu.less b/less/navmenu.less index fd94c8e2..88a23b15 100644 --- a/less/navmenu.less +++ b/less/navmenu.less @@ -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;