From 65a8f9d47f8487af56e8dba62fc203b27d1daf77 Mon Sep 17 00:00:00 2001 From: PixelGrinch Date: Tue, 20 Dec 2016 14:58:12 -0500 Subject: [PATCH] Update _menu.scss It appears that centering the menu adds unnecessary/undesired height to the container. My Proposed update to add vertical-align: top; to the inline-block applied container, fixes this issue. Thank you Bert (PixelGrinch) --- scss/components/_menu.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/scss/components/_menu.scss b/scss/components/_menu.scss index 78ac1689e..63ba0a780 100644 --- a/scss/components/_menu.scss +++ b/scss/components/_menu.scss @@ -339,6 +339,7 @@ $menu-border: $light-gray !default; > .menu { display: inline-block; + vertical-align: top; } } -- 2.47.2