27 lines
590 B
SCSS
27 lines
590 B
SCSS
![]() |
@tailwind base;
|
||
|
@tailwind components;
|
||
|
@tailwind utilities;
|
||
|
|
||
|
.business {
|
||
|
|
||
|
}
|
||
|
|
||
|
.CornerLabels{
|
||
|
@apply w-10 h-10 bg-red-600 text-white text-xl rounded-full flex justify-center items-center absolute -right-4 -top-3;
|
||
|
}
|
||
|
|
||
|
.ListBar{
|
||
|
@apply w-full p-6 select-none flex items-center cursor-pointer border-solid border-b border-gray-300;
|
||
|
}
|
||
|
|
||
|
.Text{
|
||
|
@apply text-2xl text-gray-500 font-medium leading-relaxed mt-1;
|
||
|
}
|
||
|
|
||
|
.TextTittle{
|
||
|
@apply text-3xl text-gray-600 font-semibold leading-relaxed;
|
||
|
}
|
||
|
|
||
|
.BottomBar{
|
||
|
@apply flex flex-col justify-center items-center text-[#999] select-none cursor-pointer
|
||
|
}
|