fleet/frontend/components/FleetAce/_styles.scss

36 lines
602 B
SCSS
Raw Normal View History

2021-06-07 02:32:18 +00:00
.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 {
2021-06-07 02:32:18 +00:00
.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;
}
}
}