Skip to content

Commit

Permalink
Use box-shadow mixin for form controls (#30480)
Browse files Browse the repository at this point in the history
  • Loading branch information
zalog committed Apr 1, 2020
1 parent dfa017a commit 1cc1a47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scss/forms/_form-control.scss
Expand Up @@ -29,10 +29,10 @@
background-color: $input-focus-bg;
border-color: $input-focus-border-color;
outline: 0;
// Avoid using mixin so we can pass custom focus shadow properly
@if $enable-shadows {
box-shadow: $input-box-shadow, $input-focus-box-shadow;
@include box-shadow($input-box-shadow, $input-focus-box-shadow);
} @else {
// Avoid using mixin so we can pass custom focus shadow properly
box-shadow: $input-focus-box-shadow;
}
}
Expand Down

0 comments on commit 1cc1a47

Please sign in to comment.