fleet/frontend/components/forms/FormField/_styles.scss
noahtalerman 028b968ff5
New styles for label creation form. (#101)
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).
2020-12-07 15:08:59 -08:00

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;
}
}
}