Skip to content

Commit 921fd57

Browse files
committed
change border-radius calculated values to variables
1 parent f6d1b71 commit 921fd57

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/utilities/borders.scss

+3-3
Original file line numberDiff line numberDiff line change
@@ -55,19 +55,19 @@
5555

5656
.rounded#{$variant}-#{$edge}-1 {
5757
@each $corner in $corners {
58-
border-#{$corner}-radius: $border-radius / 2 !important;
58+
border-#{$corner}-radius: $border-radius-1 !important;
5959
}
6060
}
6161

6262
.rounded#{$variant}-#{$edge}-2 {
6363
@each $corner in $corners {
64-
border-#{$corner}-radius: $border-radius !important;
64+
border-#{$corner}-radius: $border-radius-2 !important;
6565
}
6666
}
6767

6868
.rounded#{$variant}-#{$edge}-3 {
6969
@each $corner in $corners {
70-
border-#{$corner}-radius: $border-radius * 2 !important;
70+
border-#{$corner}-radius: $border-radius-3 !important;
7171
}
7272
}
7373
}

0 commit comments

Comments
 (0)