Skip to content

Commit da26299

Browse files
committed
move from mixins and add important flag
1 parent 5476e63 commit da26299

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

scss/utilities/_borders.scss

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,23 @@
1313
//
1414

1515
.rounded {
16-
@include border-radius($border-radius);
16+
border-radius: $border-radius !important;
1717
}
1818
.rounded-top {
19-
@include border-top-radius($border-radius);
19+
border-top-left-radius: $border-radius !important;
20+
border-top-right-radius: $border-radius !important;
2021
}
2122
.rounded-right {
22-
@include border-right-radius($border-radius);
23+
border-top-right-radius: $border-radius !important;
24+
border-bottom-right-radius: $border-radius !important;
2325
}
2426
.rounded-bottom {
25-
@include border-bottom-radius($border-radius);
27+
border-bottom-left-radius: $border-radius !important;
28+
border-bottom-right-radius: $border-radius !important;
2629
}
2730
.rounded-left {
28-
@include border-left-radius($border-radius);
31+
border-top-left-radius: $border-radius !important;
32+
border-bottom-left-radius: $border-radius !important;
2933
}
3034

3135
.rounded-circle {

0 commit comments

Comments
 (0)