fleet/frontend/components/forms/FormField/_styles.scss
RachelElysia 8ee66f3309
Input field and form field error state (#1132)
Fix other small consistencies: password spacing, dropdown error, error messages, pack form order
2021-06-18 14:56:11 -04:00

32 lines
581 B
SCSS

.form-field {
margin-bottom: $pad-large;
&__label {
font-size: $x-small;
font-weight: $bold;
color: $core-fleet-black;
display: block;
margin-bottom: $pad-xsmall;
&--error {
font-weight: $bold;
}
}
&__hint {
font-size: $x-small;
font-style: italic;
font-weight: $regular;
line-height: 20px;
display: inline-block;
margin-top: $pad-small;
code {
color: $core-vibrant-blue;
background-color: $ui-light-grey;
padding: $pad-xxsmall;
font-family: "SourceCodePro", $monospace;
}
}
}