From 75f1f6d0ef1809d912bbd890d82cf670044d053e Mon Sep 17 00:00:00 2001 From: Clacky Date: Fri, 24 Jan 2025 23:05:40 -0500 Subject: [PATCH] feat: replace admin page solid red background with gradient theme --- app/assets/stylesheets/admin.scss | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/assets/stylesheets/admin.scss b/app/assets/stylesheets/admin.scss index 479737c..3803ee4 100644 --- a/app/assets/stylesheets/admin.scss +++ b/app/assets/stylesheets/admin.scss @@ -23,7 +23,7 @@ body.admin-page:not(.app-loaded) { main { - background-color: red; + background: linear-gradient(to bottom, #43C6AC, #191654); min-height: 100vh; display: flex; flex-direction: column; @@ -31,7 +31,7 @@ body.admin-page:not(.app-loaded) { } .app-main { - background-color: red; + background: linear-gradient(to bottom, #43C6AC, #191654); min-height: calc(100vh - 57px); display: flex; flex-direction: column;