mirror of
https://github.com/fleetdm/fleet
synced 2026-05-21 16:08:47 +00:00
The goal of this PR is to update the styles of the LabelForm component. Also include global style changes for form components (FormField, LabelForm, and others).
27 lines
450 B
SCSS
27 lines
450 B
SCSS
.form-field {
|
|
margin-bottom: 24px;
|
|
|
|
&__label {
|
|
font-size: $x-small;
|
|
font-weight: $regular;
|
|
color: $core-black;
|
|
display: block;
|
|
margin-bottom: 4px;
|
|
|
|
&--error {
|
|
color: $alert;
|
|
}
|
|
}
|
|
|
|
&__hint {
|
|
font-weight: $regular;
|
|
color: $core-medium-blue-grey;
|
|
|
|
code {
|
|
color: $core-blue;
|
|
background-color: $ui-light-grey;
|
|
padding: 2px;
|
|
font-family: 'SourceCodePro', $monospace;
|
|
}
|
|
}
|
|
}
|