SCSS: Fix compile-time warning

This commit is contained in:
Raphael Michel
2021-05-05 22:46:41 +02:00
parent 083c257915
commit 63007b34ed

View File

@@ -30,7 +30,10 @@ a.btn, button.btn {
}
.form-control.is-focused {
@extend .form-control:focus;
$color-rgba: rgba(red($input-border-focus), green($input-border-focus), blue($input-border-focus), .6);
border-color: $input-border-focus;
outline: 0;
@include box-shadow(inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px $color-rgba);
}
.form-control.has-error {