Presupuestador_web/client/src/components/LoadingIndicator/LoadingIndicator.module.css
2024-06-06 13:05:54 +02:00

25 lines
520 B
CSS

@tailwind components;
@layer components {
.LoadingIndicator {
@apply flex flex-col items-center justify-center max-w-xs;
@apply justify-center w-full h-full mx-auto;
}
.LoadingIndicator__title {
@apply mt-6 text-xl font-semibold text-center text-white;
}
.LoadingIndicator__subtitle {
@apply text-center text-white;
}
.LoadingIndicator__lighttext {
@apply text-white;
}
.LoadingIndicator__darktext {
@apply text-slate-600;
}
}