theme/packages/tailwind/css/loading.css
2024-11-28 01:02:56 +08:00

14 lines
301 B
CSS

@tailwind components;
@layer components {
.loading {
@apply w-full h-full flex justify-center items-center;
> div {
@apply w-20 h-20 border-t-8 border-b-8 rounded-full animate-spin;
}
}
.loading-sm {
@apply w-4 h-4 border-t-2 border-b-2 rounded-full animate-spin;
}
}