From ed4f5778a92be24e7d47f93ff569fef03b9f106e Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 1 Jul 2017 20:57:34 -0700 Subject: [PATCH] Add .font-weight-light class, add !important to the classes --- scss/utilities/_text.scss | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scss/utilities/_text.scss b/scss/utilities/_text.scss index d337e0d63e..7573f2987e 100644 --- a/scss/utilities/_text.scss +++ b/scss/utilities/_text.scss @@ -28,9 +28,10 @@ // Weight and italics -.font-weight-normal { font-weight: $font-weight-normal; } -.font-weight-bold { font-weight: $font-weight-bold; } -.font-italic { font-style: italic; } +.font-weight-light { font-weight: $font-weight-light !important; } +.font-weight-normal { font-weight: $font-weight-normal !important; } +.font-weight-bold { font-weight: $font-weight-bold !important; } +.font-italic { font-style: italic !important; } // Contextual colors