mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 17:28:54 +00:00
36 lines
602 B
SCSS
36 lines
602 B
SCSS
.fleet-ace {
|
|
&__label {
|
|
font-size: $x-small;
|
|
font-weight: $bold;
|
|
color: $core-fleet-black;
|
|
display: block;
|
|
margin-bottom: $pad-xsmall;
|
|
min-height: 25px;
|
|
|
|
&--error {
|
|
color: $ui-error;
|
|
}
|
|
}
|
|
|
|
&__wrapper {
|
|
&--error {
|
|
.ace-fleet {
|
|
border: 1px solid $ui-error;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__hint {
|
|
font-size: $x-small;
|
|
font-weight: $regular;
|
|
color: $core-fleet-blue;
|
|
|
|
code {
|
|
color: $core-vibrant-blue;
|
|
background-color: $ui-light-grey;
|
|
padding: $pad-xxsmall;
|
|
font-family: "SourceCodePro", $monospace;
|
|
}
|
|
}
|
|
}
|