From 21e274401de65c0007ec29e198ad2ed2ce610cc8 Mon Sep 17 00:00:00 2001 From: loof2736 Date: Wed, 9 Nov 2022 13:05:16 -0500 Subject: [PATCH] Added static left drawer --- CSS/theme.css | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/CSS/theme.css b/CSS/theme.css index f36909f..56b60c8 100644 --- a/CSS/theme.css +++ b/CSS/theme.css @@ -1,3 +1,5 @@ +/*Transparent top header */ + .skinHeader { background-color: transparent !important; } @@ -8,7 +10,31 @@ backdrop-filter: blur(50px) !important; } +/* Rounded cards */ + .cardContent, -.cardPadder { +.cardPadder, +.cardOverlayContainer { border-radius: 15px !important; +} + +/* Static left drawer */ + +.layout-desktop .mainDrawer { + transform: none !important; + left: 0 !important; + top: 65px !important; + width: 250px !important; +} + +.layout-desktop .libraryPage { + margin-left: 225px !important; +} + +.layout-desktop .touch-menu-la.transition { + transition: none !important; +} + +.layout-desktop .mainDrawerButton { + display: none !important; } \ No newline at end of file