From d5aaf028b7d4d0feb399b16df78622a28240b6d1 Mon Sep 17 00:00:00 2001 From: ChrissiQ Date: Tue, 23 Sep 2014 16:38:49 -0600 Subject: [PATCH] Update _top-bar.scss $topbar-link-dropdown-padding was overriding without the !default, making the variable as available in the settings file useless. This is important to fix mostly because it breaks rem-based layouts (throws an error: "Incompatible uinits: 'px' and 'rem'" no matter what you do), but also because it is counterintuitive that if this is set in the settings file, it gets ignored. --- scss/foundation/components/_top-bar.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/foundation/components/_top-bar.scss b/scss/foundation/components/_top-bar.scss index f4aae7291..4af003986 100644 --- a/scss/foundation/components/_top-bar.scss +++ b/scss/foundation/components/_top-bar.scss @@ -49,7 +49,7 @@ $topbar-link-font-family: $body-font-family !default; $topbar-link-text-transform: none !default; $topbar-link-padding: $topbar-height / 3 !default; $topbar-back-link-size: rem-calc(18) !default; -$topbar-link-dropdown-padding: 20px; +$topbar-link-dropdown-padding: 20px !default; $topbar-button-font-size: 0.75rem !default; $topbar-button-top: 7px !default; -- 2.47.2