Skip to content

Commit

Permalink
fix(forms): ensure .form-check-input is squared in Chromium-based bro…
Browse files Browse the repository at this point in the history
…wsers
  • Loading branch information
ffoodd committed Oct 27, 2020
1 parent 3ea50d0 commit 010c909
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/css/boosted.css.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ $form-check-input-active-bg-color: $component-active-bg !default; // Boos

$form-check-input-bg: $body-bg !default;
$form-check-input-border: $border-width solid $input-border-color !default;
$form-check-input-border-radius: null !default;
$form-check-input-border-radius: 0 !default;
$form-check-radio-border-radius: 50% !default;
$form-check-input-focus-border: null !default;
$form-check-input-focus-box-shadow: $input-btn-focus-box-shadow !default;
Expand Down
2 changes: 1 addition & 1 deletion scss/forms/_form-check.scss
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
@include transition($form-check-transition);

&[type="checkbox"] {
@include border-radius($form-check-input-border-radius);
@include border-radius($form-check-input-border-radius, $form-check-input-border-radius); // Boosted mod
}

&[type="radio"] {
Expand Down

0 comments on commit 010c909

Please sign in to comment.