Presupuestador_web/client/src/components/LoadingIndicator/LoadingIndicator.module.css

25 lines
520 B
CSS
Raw Normal View History

2024-06-06 11:05:54 +00:00
@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;
}
}