diff options
| author | Gaƫl Poupard <[email protected]> | 2020-04-29 20:13:57 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-04-29 21:13:57 +0300 |
| commit | 8bee11300812bbfe46b232a7dfc2c8e6e6f5eee7 (patch) | |
| tree | 3d0a20eba5b500306a4c4f73e2eea99cb37883e5 /scss | |
| parent | df88748eb72f61e61459621f6200d248c05dfe68 (diff) | |
| download | bootstrap-8bee11300812bbfe46b232a7dfc2c8e6e6f5eee7.tar.xz bootstrap-8bee11300812bbfe46b232a7dfc2c8e6e6f5eee7.zip | |
[type=radio] should always be rounded (#30686)
Diffstat (limited to 'scss')
| -rw-r--r-- | scss/forms/_form-check.scss | 3 |
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 { |
