mirror of
https://github.com/empayre/fleet.git
synced 2024-11-08 01:38:57 +00:00
8ee66f3309
Fix other small consistencies: password spacing, dropdown error, error messages, pack form order
32 lines
581 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|