From 312039bfd62f3d1604c099d96b8149e11e271d1d Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Fri, 11 Aug 2023 12:28:33 -0300 Subject: [PATCH] Fixed color of background --- src/frontend/src/App.tsx | 2 +- src/frontend/src/style/applies.css | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/frontend/src/App.tsx b/src/frontend/src/App.tsx index 1b4393b55..c4823d539 100644 --- a/src/frontend/src/App.tsx +++ b/src/frontend/src/App.tsx @@ -137,7 +137,7 @@ export default function App() { FallbackComponent={CrashErrorComponent} > {loading ? ( -
+
) : ( diff --git a/src/frontend/src/style/applies.css b/src/frontend/src/style/applies.css index 34f0f6732..481d94afb 100644 --- a/src/frontend/src/style/applies.css +++ b/src/frontend/src/style/applies.css @@ -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; }