diff options
| author | Mark Otto <[email protected]> | 2017-06-25 18:39:00 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-06-25 18:39:14 -0700 |
| commit | 9bfbee3503d7d76d03ccc85f02a64547b2d31054 (patch) | |
| tree | 70fa1cf6492a9a2797617d99537a79a4fd50fdaf /scss | |
| parent | f8d61218ca8a3e0f5073eac8b7babb8095e66547 (diff) | |
| download | bootstrap-9bfbee3503d7d76d03ccc85f02a64547b2d31054.tar.xz bootstrap-9bfbee3503d7d76d03ccc85f02a64547b2d31054.zip | |
add border color utilities
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/utilities/_borders.scss | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scss/utilities/_borders.scss b/scss/utilities/_borders.scss index 4cb0a6c3b..05480582c 100644 --- a/scss/utilities/_borders.scss +++ b/scss/utilities/_borders.scss @@ -2,12 +2,19 @@ // Border // +.border { border: 1px solid $gray-200 !important; } .border-0 { border: 0 !important; } .border-top-0 { border-top: 0 !important; } .border-right-0 { border-right: 0 !important; } .border-bottom-0 { border-bottom: 0 !important; } .border-left-0 { border-left: 0 !important; } +@each $color, $value in $theme-colors { + .border-#{$color} { + border-color: $value !important; + } +} + // // Border-radius // |
