Skip to content

Commit

Permalink
Backport #30555
Browse files Browse the repository at this point in the history
Use `box-shadow` mixin for `.form-select`
  • Loading branch information
MartijnCuppens authored and XhmikosR committed Apr 11, 2020
1 parent 77d722f commit 35aa9c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scss/_custom-forms.scss
Expand Up @@ -237,8 +237,9 @@
border-color: $custom-select-focus-border-color;
outline: 0;
@if $enable-shadows {
box-shadow: $custom-select-box-shadow, $custom-select-focus-box-shadow;
@include box-shadow($custom-select-box-shadow, $custom-select-focus-box-shadow);
} @else {
// Avoid using mixin so we can pass custom focus shadow properly
box-shadow: $custom-select-focus-box-shadow;
}

Expand Down

0 comments on commit 35aa9c9

Please sign in to comment.