mirror of
https://github.com/fleetdm/fleet
synced 2026-05-17 22:18:39 +00:00
33 lines
579 B
SCSS
33 lines
579 B
SCSS
.form-field {
|
|
margin-bottom: $pad-small;
|
|
|
|
&__label {
|
|
font-size: 16px;
|
|
font-weight: $bold;
|
|
font-style: normal;
|
|
font-stretch: normal;
|
|
letter-spacing: -0.5px;
|
|
color: $text-dark;
|
|
display: block;
|
|
margin-bottom: 4px;
|
|
|
|
&--error {
|
|
color: $alert;
|
|
}
|
|
}
|
|
|
|
&__hint {
|
|
font-size: 14px;
|
|
font-weight: $normal;
|
|
line-height: 1.57;
|
|
letter-spacing: 1px;
|
|
color: $accent-text;
|
|
|
|
code {
|
|
color: $brand;
|
|
background-color: $accent-light;
|
|
padding: 2px;
|
|
font-family: 'SourceCodePro', $monospace;
|
|
}
|
|
}
|
|
}
|