mirror of
https://github.com/hashicorp/vault.git
synced 2025-12-17 23:41:56 +01: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;
|
|
}
|
|
}
|
|
}
|