Skip to content

Commit

Permalink
Use box-shadow mixin for .form-select (twbs#30555)
Browse files Browse the repository at this point in the history
  • Loading branch information
zalog authored and olsza committed Oct 3, 2020
1 parent 132954e commit a8bfdae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scss/forms/_form-select.scss
Expand Up @@ -28,8 +28,9 @@
border-color: $form-select-focus-border-color;
outline: 0;
@if $enable-shadows {
box-shadow: $form-select-box-shadow, $form-select-focus-box-shadow;
@include box-shadow($form-select-box-shadow, $form-select-focus-box-shadow);
} @else {
// Avoid using mixin so we can pass custom focus shadow properly
box-shadow: $form-select-focus-box-shadow;
}

Expand Down

0 comments on commit a8bfdae

Please sign in to comment.