From: Brett Mason Date: Wed, 20 Jan 2016 20:19:50 +0000 (+0000) Subject: Added $topbar-title-spacing variable X-Git-Tag: v6.1.2~23^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F7944%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Added $topbar-title-spacing variable Added $topbar-title-spacing variable to remove reliance on the grid. --- diff --git a/scss/components/_top-bar.scss b/scss/components/_top-bar.scss index 23048dc69..480b9fd13 100644 --- a/scss/components/_top-bar.scss +++ b/scss/components/_top-bar.scss @@ -14,6 +14,10 @@ $topbar-padding: 0.5rem !default; /// @type Color $topbar-background: $light-gray !default; +/// Spacing for the top bar title. +/// @type Number +$topbar-title-spacing: 1rem !default; + /// Width of `` elements inside the top bar. /// @type Number $topbar-input-width: 200px !default; @@ -78,7 +82,7 @@ $topbar-input-width: 200px !default; // Sub-sections .top-bar-title { float: left; - padding-right: $grid-column-gutter; + margin-right: $topbar-title-spacing; } .top-bar-left { float: left;