diff options
| author | Mark Otto <[email protected]> | 2017-07-01 20:57:34 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-08-10 22:40:02 -0700 |
| commit | ed4f5778a92be24e7d47f93ff569fef03b9f106e (patch) | |
| tree | 6a4e22494a4fdcd6837bb920679b8c48cf0346d7 /scss/utilities | |
| parent | db3dcb7c66457ca4ff2531c339e55c63dc52d576 (diff) | |
| download | bootstrap-ed4f5778a92be24e7d47f93ff569fef03b9f106e.tar.xz bootstrap-ed4f5778a92be24e7d47f93ff569fef03b9f106e.zip | |
Add .font-weight-light class, add !important to the classes
Diffstat (limited to 'scss/utilities')
| -rw-r--r-- | scss/utilities/_text.scss | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scss/utilities/_text.scss b/scss/utilities/_text.scss index d337e0d63..7573f2987 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 |
