aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaĆ«l Poupard <[email protected]>2020-04-29 20:13:57 +0200
committerGitHub <[email protected]>2020-04-29 21:13:57 +0300
commit8bee11300812bbfe46b232a7dfc2c8e6e6f5eee7 (patch)
tree3d0a20eba5b500306a4c4f73e2eea99cb37883e5
parentdf88748eb72f61e61459621f6200d248c05dfe68 (diff)
downloadbootstrap-8bee11300812bbfe46b232a7dfc2c8e6e6f5eee7.tar.xz
bootstrap-8bee11300812bbfe46b232a7dfc2c8e6e6f5eee7.zip
[type=radio] should always be rounded (#30686)
-rw-r--r--scss/forms/_form-check.scss3
1 files changed, 2 insertions, 1 deletions
diff --git a/scss/forms/_form-check.scss b/scss/forms/_form-check.scss
index 3ce001ac7..31f554a41 100644
--- a/scss/forms/_form-check.scss
+++ b/scss/forms/_form-check.scss
@@ -33,7 +33,8 @@
}
&[type="radio"] {
- @include border-radius($form-check-radio-border-radius);
+ // stylelint-disable-next-line property-blacklist
+ border-radius: $form-check-radio-border-radius;
}
&:active {