15 lines
295 B
CSS
15 lines
295 B
CSS
@import 'tailwindcss';
|
|
|
|
@utility {
|
|
.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;
|
|
}
|
|
}
|
|
|