Merge pull request #819 from ggtylerr/filter-patch

Hides filter from sidebar
This commit is contained in:
nbats 2023-08-09 23:45:50 -07:00 committed by GitHub
commit ef4c313a0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,3 +10,11 @@ html.dark ul.flex-col > li > a > svg {
:not(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)); 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;
}