diff options
| author | Mark Otto <[email protected]> | 2016-11-26 16:49:07 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2016-11-26 16:49:07 -0800 |
| commit | f7f5547dab499e00301afec1154c85bd2f22faa3 (patch) | |
| tree | 6a73361ecca6c2a3591f02932d3967185a2ef98b /scss | |
| parent | 36bf06f520cf1bf9cb09ce5d3cd46300ffbba19e (diff) | |
| parent | dc52029beaff899242bdff8e9c00a932959609ba (diff) | |
| download | bootstrap-f7f5547dab499e00301afec1154c85bd2f22faa3.tar.xz bootstrap-f7f5547dab499e00301afec1154c85bd2f22faa3.zip | |
Merge branch 'v4-dev' of https://github.com/twbs/bootstrap into v4-dev
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/utilities/_borders.scss | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/scss/utilities/_borders.scss b/scss/utilities/_borders.scss index b2e70aaf5..015c9b943 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 @@ -28,3 +31,7 @@ .rounded-circle { border-radius: 50%; } + +.rounded-0 { + border-radius: 0; +} |
