mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 00:18:27 +00:00
15 lines
349 B
SCSS
15 lines
349 B
SCSS
|
|
// react-select's <Select/> styles prop customizes the styling of
|
||
|
|
// the internal components and not external elements like labels
|
||
|
|
// See customStyles in DropdownWrappr.tsx
|
||
|
|
// https://react-select.com/styles
|
||
|
|
.dropdown-wrapper {
|
||
|
|
&__label {
|
||
|
|
&--error {
|
||
|
|
color: $ui-error;
|
||
|
|
}
|
||
|
|
&--disabled {
|
||
|
|
color: $ui-fleet-black-50;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|