Fixed color of background

This commit is contained in:
Lucas Oliveira 2023-08-11 12:28:33 -03:00
commit 312039bfd6
2 changed files with 5 additions and 1 deletions

View file

@ -137,7 +137,7 @@ export default function App() {
FallbackComponent={CrashErrorComponent}
>
{loading ? (
<div className="flex h-screen items-center justify-center">
<div className="loading-page-panel">
<LoadingComponent remSize={50} />
</div>
) : (

View file

@ -192,6 +192,10 @@
@apply flex w-full;
}
.loading-page-panel {
@apply h-full w-full flex justify-center items-center bg-muted;
}
.main-page-panel {
@apply flex-max-width h-full flex-col overflow-auto bg-muted px-16;
}