From 70c913aeca510eba7a26af5fd41ea88383717772 Mon Sep 17 00:00:00 2001 From: Tyler Flowers Date: Thu, 10 Aug 2023 05:55:59 +0000 Subject: [PATCH] Hides filter from sidebar --- static/styles.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/static/styles.css b/static/styles.css index fe467caa8..5a4f5ebd5 100644 --- a/static/styles.css +++ b/static/styles.css @@ -10,3 +10,11 @@ html.dark ul.flex-col > li > a > svg { :not(html.dark) ul.flex-col > li > a > svg { color: rgb(47 51 72/var(--tw-text-opacity)); } + +/* Hide filter from sidebar */ +div.left-0:nth-child(2) { + display: none; +} +aside ul:nth-child(3) { + margin-top: 1em; +}