Skip to content

Commit

Permalink
Consistently use outline:0 rather than outline:none (#32751)
Browse files Browse the repository at this point in the history
just for code consistency, no actual effect on styling per se
  • Loading branch information
patrickhlauke committed Jan 10, 2021
1 parent a2ae2c3 commit d62d18f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scss/_close.scss
Expand Up @@ -22,7 +22,7 @@
}

&:focus {
outline: none;
outline: 0;
box-shadow: $btn-close-focus-shadow;
opacity: $btn-close-focus-opacity;
}
Expand Down
2 changes: 1 addition & 1 deletion scss/forms/_form-range.scss
Expand Up @@ -12,7 +12,7 @@
appearance: none;

&:focus {
outline: none;
outline: 0;

// Pseudo-elements must be split across multiple rulesets to have an effect.
// No box-shadow() mixin for focus accessibility.
Expand Down

0 comments on commit d62d18f

Please sign in to comment.