0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-02-11 08:54:23 +01:00

move from mixins and add important flag

This commit is contained in:
Mark Otto 2017-06-17 19:05:36 -07:00 committed by Mark Otto
parent 5476e636ce
commit da2629907e

View File

@ -13,19 +13,23 @@
// //
.rounded { .rounded {
@include border-radius($border-radius); border-radius: $border-radius !important;
} }
.rounded-top { .rounded-top {
@include border-top-radius($border-radius); border-top-left-radius: $border-radius !important;
border-top-right-radius: $border-radius !important;
} }
.rounded-right { .rounded-right {
@include border-right-radius($border-radius); border-top-right-radius: $border-radius !important;
border-bottom-right-radius: $border-radius !important;
} }
.rounded-bottom { .rounded-bottom {
@include border-bottom-radius($border-radius); border-bottom-left-radius: $border-radius !important;
border-bottom-right-radius: $border-radius !important;
} }
.rounded-left { .rounded-left {
@include border-left-radius($border-radius); border-top-left-radius: $border-radius !important;
border-bottom-left-radius: $border-radius !important;
} }
.rounded-circle { .rounded-circle {