portfolio_leptos/style/loading.css

15 lines
332 B
CSS
Raw Permalink Normal View History

2023-12-09 19:44:55 +01:00
@layer components {
.loading {
@apply bg-surface dark:bg-dark_surface text-on_surface dark:text-dark_on_surface;
@apply min-h-screen p-5;
@apply flex flex-col justify-center;
& svg {
@apply mx-auto w-12 h-12;
}
& p {
@apply text-center;
}
}
}