19 lines
432 B
SCSS
19 lines
432 B
SCSS
// Labels
|
|
// *******************************************************************************
|
|
|
|
.form-label,
|
|
.col-form-label {
|
|
text-transform: $form-label-text-transform;
|
|
letter-spacing: $form-label-letter-spacing;
|
|
color: $headings-color;
|
|
white-space: nowrap;
|
|
}
|
|
// Default (vertical ) form label size
|
|
.form-label-lg {
|
|
@include font-size($input-font-size-lg);
|
|
}
|
|
|
|
.form-label-sm {
|
|
@include font-size($input-font-size-sm);
|
|
}
|