Add `$form-text-font-weight` (#30617)

This commit is contained in:
Catalin Zalog 2020-04-20 09:19:06 +03:00 committed by GitHub
parent 4fc701f6aa
commit ed32ee2e78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -572,6 +572,7 @@ $btn-transition: color .15s ease-in-out, background-color .15s ease
$form-text-margin-top: .25rem !default;
$form-text-font-size: $small-font-size !default;
$form-text-font-style: null !default;
$form-text-font-weight: null !default;
$form-text-color: $text-muted !default;
$form-label-margin-bottom: .5rem !default;

View File

@ -6,5 +6,6 @@
margin-top: $form-text-margin-top;
@include font-size($form-text-font-size);
font-style: $form-text-font-style;
font-weight: $form-text-font-weight;
color: $form-text-color;
}