From 7539cfb29cfa629159827bd649c73d5d76acc798 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 18 Sep 2020 01:21:30 -0700 Subject: [PATCH] Update _custom-forms.scss (#31693) Typo in box-shadow attribute, global variable used instead of local. Co-authored-by: Arthur Shlain Co-authored-by: XhmikosR --- scss/_custom-forms.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/_custom-forms.scss b/scss/_custom-forms.scss index 9aeeeda7f3..fa6603d978 100644 --- a/scss/_custom-forms.scss +++ b/scss/_custom-forms.scss @@ -38,7 +38,7 @@ &:focus ~ .custom-control-label::before { // the mixin is not used here to make sure there is feedback @if $enable-shadows { - box-shadow: $input-box-shadow, $input-focus-box-shadow; + box-shadow: $input-box-shadow, $custom-control-indicator-focus-box-shadow; } @else { box-shadow: $custom-control-indicator-focus-box-shadow; }