14 lines
156 B
SCSS
14 lines
156 B
SCSS
|
.status-text {
|
||
|
&.node-ready {
|
||
|
color: $nomad-green-dark;
|
||
|
}
|
||
|
|
||
|
&.node-down {
|
||
|
color: $danger;
|
||
|
}
|
||
|
|
||
|
&.node-initializing {
|
||
|
color: $grey;
|
||
|
}
|
||
|
}
|