From 2c034cf5423e942ca47b632f60305522b4612898 Mon Sep 17 00:00:00 2001
From: Chris Rebert <code@chrisrebert.com>
Date: Tue, 16 Feb 2016 00:27:53 -0800
Subject: [PATCH] Add $label-font-size variable in the name of not hardcoding
 values

[skip sauce]
[skip validator]
---
 scss/_labels.scss    | 2 +-
 scss/_variables.scss | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/scss/_labels.scss b/scss/_labels.scss
index fb4ef5aef7..cb8943978a 100644
--- a/scss/_labels.scss
+++ b/scss/_labels.scss
@@ -6,7 +6,7 @@
 .label {
   display: inline-block;
   padding: $label-padding-y $label-padding-x;
-  font-size: 75%;
+  font-size: $label-font-size;
   font-weight: $label-font-weight;
   line-height: 1;
   color: $label-color;
diff --git a/scss/_variables.scss b/scss/_variables.scss
index 77e60ff714..4d2a0b1961 100644
--- a/scss/_variables.scss
+++ b/scss/_variables.scss
@@ -618,6 +618,7 @@ $label-danger-bg:             $brand-danger !default;
 
 $label-color:                 #fff !default;
 $label-link-hover-color:      #fff !default;
+$label-font-size:             75% !default;
 $label-font-weight:           bold !default;
 $label-padding-x:             .4em !default;
 $label-padding-y:             .25em !default;
-- 
GitLab