Fix scrollbar track background in dark mode caused by #308 (#313)

This commit is contained in:
Kian Kasad 2021-03-22 04:04:02 -07:00 committed by GitHub
parent 4b24a94a6a
commit 306aa9fbfc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,6 +60,12 @@
.list {
background: var(--theme);
}
.list:not(.dark)::-webkit-scrollbar-track {
background: 0 0;
}
.list:not(.dark)::-webkit-scrollbar-thumb {
border-color: var(--theme);
}
}
{{- end }}
</style>