[TASK] add status to boat

This commit is contained in:
Marie Birner
2023-07-30 20:02:46 +02:00
parent 80e57dfe12
commit fafe82b15a
6 changed files with 98 additions and 15 deletions

View File

@ -0,0 +1,15 @@
.status {
@apply inline-block w-[12px] h-[12px] rounded-full mr-2;
&-good {
@apply bg-[#15803d];
}
&-alert {
@apply bg-[#ffae42];
}
&-locked {
@apply bg-[#f43f5e];
}
}