From dc969ecf8b4b10587c63a5c6437a289ce2b07a75 Mon Sep 17 00:00:00 2001 From: Brett Mason Date: Wed, 20 Jan 2016 20:19:50 +0000 Subject: [PATCH] Added $topbar-title-spacing variable Added $topbar-title-spacing variable to remove reliance on the grid. --- scss/components/_top-bar.scss | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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; -- 2.47.2