diff options
| author | Mark Otto <[email protected]> | 2017-10-22 19:43:35 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-10-22 19:43:35 -0700 |
| commit | 7b7c10aae838fd300e172309653cc8b85c6cdfeb (patch) | |
| tree | 7b0b721fe2065a8eafc12ccdf493b0e81a72e03f | |
| parent | a79e0f9c78b9ded62fb7f375b3a385af79a99a1b (diff) | |
| download | bootstrap-7b7c10aae838fd300e172309653cc8b85c6cdfeb.tar.xz bootstrap-7b7c10aae838fd300e172309653cc8b85c6cdfeb.zip | |
Replace some border-radius properties for the mixin, closes #23872
| -rw-r--r-- | scss/_card.scss | 4 | ||||
| -rw-r--r-- | scss/_code.scss | 2 | ||||
| -rw-r--r-- | scss/_list-group.scss | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/scss/_card.scss b/scss/_card.scss index 66f344eda..a3a435a7f 100644 --- a/scss/_card.scss +++ b/scss/_card.scss @@ -231,13 +231,13 @@ } &:not(:first-child):not(:last-child):not(:only-child) { - border-radius: 0; + @include border-radius(0); .card-img-top, .card-img-bottom, .card-header, .card-footer { - border-radius: 0; + @include border-radius(0); } } } diff --git a/scss/_code.scss b/scss/_code.scss index b88f5b61d..a9fe624bc 100644 --- a/scss/_code.scss +++ b/scss/_code.scss @@ -51,7 +51,7 @@ pre { font-size: inherit; color: inherit; background-color: transparent; - border-radius: 0; + @include border-radius(0); } } diff --git a/scss/_list-group.scss b/scss/_list-group.scss index abe132255..d771364cb 100644 --- a/scss/_list-group.scss +++ b/scss/_list-group.scss @@ -87,7 +87,7 @@ .list-group-item { border-right: 0; border-left: 0; - border-radius: 0; + @include border-radius(0); } &:first-child { |
