We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c752b4e commit f6d1b71Copy full SHA for f6d1b71
src/support/variables/misc.scss
@@ -9,6 +9,7 @@ $border: $border-width $border-color $border-style !default;
9
// Border Radius
10
$border-radius-1: 4px !default;
11
$border-radius-2: 6px !default;
12
+$border-radius-3: 8px !default;
13
$border-radius: $border-radius-2 !default;
14
15
// Box shadow
src/utilities/borders.scss
@@ -44,6 +44,7 @@
44
.rounded#{$variant}-0 { border-radius: 0 !important; }
45
.rounded#{$variant}-1 { border-radius: $border-radius-1 !important; }
46
.rounded#{$variant}-2 { border-radius: $border-radius-2 !important; }
47
+ .rounded#{$variant}-3 { border-radius: $border-radius-3 !important; }
48
49
@each $edge, $corners in $edges {
50
.rounded#{$variant}-#{$edge}-0 {
0 commit comments