25 lines
520 B
CSS
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;
|
||
|
|
}
|
||
|
|
}
|