mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-13 18:17:02 +02:00
20 lines
297 B
SCSS
20 lines
297 B
SCSS
.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;
|
|
}
|
|
}
|
|
}
|