File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ $border: $border-width $border-color $border-style !default;
9
9
// Border Radius
10
10
$border-radius-1 : 4px !default ;
11
11
$border-radius-2 : 6px !default ;
12
+ $border-radius-3 : 8px !default ;
12
13
$border-radius : $border-radius-2 !default ;
13
14
14
15
// Box shadow
Original file line number Diff line number Diff line change 44
44
.rounded#{$variant } -0 { border-radius : 0 !important ; }
45
45
.rounded#{$variant } -1 { border-radius : $border-radius-1 !important ; }
46
46
.rounded#{$variant } -2 { border-radius : $border-radius-2 !important ; }
47
+ .rounded#{$variant } -3 { border-radius : $border-radius-3 !important ; }
47
48
48
49
@each $edge , $corners in $edges {
49
50
.rounded#{$variant } -#{$edge } -0 {
54
55
55
56
.rounded#{$variant } -#{$edge } -1 {
56
57
@each $corner in $corners {
57
- border- #{$corner } -radius : $border-radius / 2 !important ;
58
+ border- #{$corner } -radius : $border-radius-1 !important ;
58
59
}
59
60
}
60
61
61
62
.rounded#{$variant } -#{$edge } -2 {
62
63
@each $corner in $corners {
63
- border- #{$corner } -radius : $border-radius !important ;
64
+ border- #{$corner } -radius : $border-radius-2 !important ;
64
65
}
65
66
}
66
67
67
68
.rounded#{$variant } -#{$edge } -3 {
68
69
@each $corner in $corners {
69
- border- #{$corner } -radius : $border-radius * 2 !important ;
70
+ border- #{$corner } -radius : $border-radius-3 !important ;
70
71
}
71
72
}
72
73
}
You can’t perform that action at this time.
0 commit comments