1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-28 23:59:53 +02:00

add border color utilities

This commit is contained in:
Mark Otto
2017-06-25 18:39:00 -07:00
parent f8d61218ca
commit 9bfbee3503
3 changed files with 22 additions and 3 deletions

View File

@@ -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
//