vault/ui/app/styles/components/status-menu.scss
Hamid Ghaf e55c18ed12
adding copyright header (#19555)
* adding copyright header

* fix fmt and a test
2023-03-15 09:00:52 -07:00

25 lines
375 B
SCSS

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
.status-indicator-button {
&[data-status='good'] {
.status-indicator-color {
color: $green-light;
}
}
&[data-status='mixed'] {
.status-indicator-color {
color: $yellow;
}
}
&[data-status='bad'] {
.status-indicator-color {
color: $red;
}
}
}