15 lines
198 B
SCSS
15 lines
198 B
SCSS
|
.status {
|
||
|
@apply inline-block w-[12px] h-[12px] rounded-full mr-2;
|
||
|
|
||
|
&-good {
|
||
|
@apply bg-[#15803d];
|
||
|
}
|
||
|
|
||
|
&-alert {
|
||
|
@apply bg-[#ffae42];
|
||
|
}
|
||
|
|
||
|
&-locked {
|
||
|
@apply bg-[#f43f5e];
|
||
|
}
|
||
|
}
|