fleet/frontend/components/forms/FormField/_styles.scss
2018-09-19 10:07:37 -04:00

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