fix: disqus dark mode (#478)

* fix: disqus dark mode

* remove color-scheme

add custom chrome scrollbar style (removed in https://github.com/CaiJimmy/hugo-theme-stack/pull/428)
This commit is contained in:
Jimmy Cai
2022-01-30 10:57:16 +01:00
committed by GitHub
parent 6474b9dfd8
commit 67d5156507
2 changed files with 15 additions and 2 deletions
+14
View File
@@ -22,3 +22,17 @@ body {
scrollbar-color: var(--scrollbar-thumb) transparent;
}
/**/
/* scrollbar styles for Chromium */
::-webkit-scrollbar {
height: auto;
}
::-webkit-scrollbar-thumb {
background-color: var(--scrollbar-thumb);
}
::-webkit-scrollbar-track {
background-color: transparent;
}
/**/