diff options
| author | Mark Otto <[email protected]> | 2016-11-26 16:44:16 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2016-11-26 16:44:16 -0800 |
| commit | 095ea0b795a80530f7b5bd114fdd07c46893bfcb (patch) | |
| tree | b56dda029f9eacd93c2e802d97d1678bb92ee9b9 /scss/utilities | |
| parent | ec5e7e5e5acdc56240eef0690881728a046da46e (diff) | |
| download | bootstrap-095ea0b795a80530f7b5bd114fdd07c46893bfcb.tar.xz bootstrap-095ea0b795a80530f7b5bd114fdd07c46893bfcb.zip | |
Border utilities (#21213)
* grunt
* add border utilities for removing borders
* clean up comments
* add basic border docs
* docs styles for border utils
Diffstat (limited to 'scss/utilities')
| -rw-r--r-- | scss/utilities/_borders.scss | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/scss/utilities/_borders.scss b/scss/utilities/_borders.scss index b2e70aaf5..e3e31de4b 100644 --- a/scss/utilities/_borders.scss +++ b/scss/utilities/_borders.scss @@ -1,9 +1,12 @@ // -// Border-width +// Border // -// TBD...? - +.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; } // // Border-radius |
