mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-19 13:41:10 +02:00
25 lines
375 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|