mirror of https://github.com/twbs/bootstrap.git
23 lines
649 B
SCSS
23 lines
649 B
SCSS
@use "../config" as *;
|
|
@use "../variables" as *;
|
|
@use "../vendor/rfs" as *;
|
|
@use "form-variables" as *;
|
|
|
|
// scss-docs-start form-text-variables
|
|
$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: var(--#{$prefix}secondary-color) !default;
|
|
// scss-docs-end form-text-variables
|
|
|
|
@layer forms {
|
|
.form-text {
|
|
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;
|
|
}
|
|
}
|