From 1d0a297768ae2efe60eb9f17ea83973eeec6bc41 Mon Sep 17 00:00:00 2001 From: Lilian Date: Thu, 28 Nov 2024 17:36:09 +0100 Subject: [PATCH] [frontend] Fix incorrect CSS colors --- Iceshrimp.Frontend/Layout/UnauthLayout.razor.css | 5 +++++ Iceshrimp.Frontend/Pages/Login.razor.css | 1 - Iceshrimp.Frontend/wwwroot/css/app.css | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Iceshrimp.Frontend/Layout/UnauthLayout.razor.css b/Iceshrimp.Frontend/Layout/UnauthLayout.razor.css index 78734daa..de6a319b 100644 --- a/Iceshrimp.Frontend/Layout/UnauthLayout.razor.css +++ b/Iceshrimp.Frontend/Layout/UnauthLayout.razor.css @@ -4,6 +4,11 @@ padding: 1rem; } +.page{ + background-color: var(--background-color); + height: 100%; +} + .logo { object-fit: contain; height: 2rem diff --git a/Iceshrimp.Frontend/Pages/Login.razor.css b/Iceshrimp.Frontend/Pages/Login.razor.css index b95e2de0..6824b362 100644 --- a/Iceshrimp.Frontend/Pages/Login.razor.css +++ b/Iceshrimp.Frontend/Pages/Login.razor.css @@ -38,7 +38,6 @@ } .dialog-content { - background-color: var(--background-color); border-radius: 1rem; margin: 0 auto; top: 10%; diff --git a/Iceshrimp.Frontend/wwwroot/css/app.css b/Iceshrimp.Frontend/wwwroot/css/app.css index 620ca9b7..8a9d12c5 100644 --- a/Iceshrimp.Frontend/wwwroot/css/app.css +++ b/Iceshrimp.Frontend/wwwroot/css/app.css @@ -6,7 +6,7 @@ color-scheme: light dark; color: var(--font-color); - background-color: #3b364c; + background-color: var(--background-color); font-synthesis: none; text-rendering: optimizeLegibility;