From 77422abe0b81d70e28b142dc7505032f674a5178 Mon Sep 17 00:00:00 2001 From: Anthony Talarico Date: Thu, 11 Aug 2016 08:56:47 -0400 Subject: [PATCH] removing padding from top bar dropdown nav items when active, the extra padding is causing the items to wrap --- css/app.css | 2 +- scss/_topbar.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/css/app.css b/css/app.css index ed97957..f2e545b 100644 --- a/css/app.css +++ b/css/app.css @@ -6472,7 +6472,7 @@ header { display: none; } .top-bar-section ul li.has-dropdown.active:not(.has-form) ul.dropdown li:not(.has-form):not(.active) > a:not(.button) { line-height: normal; - padding: 10px 10px 0 0; } + padding: 10px 0 0 0; } .top-bar-section ul li.has-dropdown.active:not(.has-form) ul.dropdown li.active:not(.has-form) > a:not(.button) { line-height: normal; padding: 10px 0px 0 0; diff --git a/scss/_topbar.scss b/scss/_topbar.scss index 76a4cc7..2813f8f 100644 --- a/scss/_topbar.scss +++ b/scss/_topbar.scss @@ -109,7 +109,7 @@ li:not(.has-form):not(.active) { &> a:not(.button){ line-height: normal; - padding: 10px 10px 0 0; + padding: 10px 0 0 0; } } li.active:not(.has-form){ -- 2.17.1