mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
13 lines
197 B
SCSS
13 lines
197 B
SCSS
$cert-status-colors: (
|
|
ready: $colorOk,
|
|
);
|
|
|
|
@mixin cert-status-bgc {
|
|
@each $status, $color in $cert-status-colors {
|
|
&.#{$status} {
|
|
background: $color;
|
|
color: white;
|
|
}
|
|
}
|
|
}
|