diff options
| author | Mark Otto <[email protected]> | 2017-08-07 21:36:08 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-08-07 22:06:53 -0700 |
| commit | 2cd2301e7a512e2e77ddcfcdec6d35ab25e326b6 (patch) | |
| tree | c2fc49a5de4cdabee47f73ad2639df41191ca8cd /scss/utilities | |
| parent | 92c26af81481e9fdcd9bcff7e477d0750a359979 (diff) | |
| download | bootstrap-2cd2301e7a512e2e77ddcfcdec6d35ab25e326b6.tar.xz bootstrap-2cd2301e7a512e2e77ddcfcdec6d35ab25e326b6.zip | |
Add .bg-white and .border-white
Diffstat (limited to 'scss/utilities')
| -rw-r--r-- | scss/utilities/_background.scss | 1 | ||||
| -rw-r--r-- | scss/utilities/_borders.scss | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/scss/utilities/_background.scss b/scss/utilities/_background.scss index f85c13c60..1ef34fd8e 100644 --- a/scss/utilities/_background.scss +++ b/scss/utilities/_background.scss @@ -2,4 +2,5 @@ @include bg-variant('.bg-#{$color}', $value); } +.bg-white { background-color: $white !important; } .bg-transparent { background-color: transparent !important; } diff --git a/scss/utilities/_borders.scss b/scss/utilities/_borders.scss index 05480582c..82e177c80 100644 --- a/scss/utilities/_borders.scss +++ b/scss/utilities/_borders.scss @@ -15,6 +15,10 @@ } } +.border-white { + border-color: $white !important; +} + // // Border-radius // |
