From c83c8c56bb4d0c210e78fb53abe3f2aaf173fd18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8F=A4=E5=A4=A7=E7=BE=8A?= Date: Tue, 14 May 2024 21:25:33 +0800 Subject: [PATCH] fix: shell div the colors in the dark theme --- frontend/src/css/_shell.css | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/frontend/src/css/_shell.css b/frontend/src/css/_shell.css index 331de36e..af65066c 100644 --- a/frontend/src/css/_shell.css +++ b/frontend/src/css/_shell.css @@ -14,15 +14,23 @@ width: 100%; } +:root.dark { + .shell { + background: rgba(30, 30, 30, 0.6); + } + .shell__text { + color: white; + } +} + .shell__divider{ background: rgba(127, 127, 127, 0.3); width: 100%; height: 8px; } + .shell__divider:hover { background: rgba(127, 127, 127, 0.9); - - } .shell__content {