We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a01d50 commit 60afce4Copy full SHA for 60afce4
gradle/dokka/custom-styles.css
@@ -1,3 +1,21 @@
1
.navigation-controls--btn_homepage {
2
background-image: url("../images/github-icon.svg")
3
}
4
+
5
+/*
6
+By default, scrollbars in Dokka have a light background even when in dark-mode. So we override that
7
+here to set the scrollbar background color to dark when in dark-mode (using the `theme-dark` class
8
+that Dokka sets on the `html` element when in dark-mode).
9
+*/
10
+.theme-dark {
11
+ /* Scrollbar customization in Firefox - Chrome/Safari use -webkit-scrollbar below */
12
+ scrollbar-color: #525257 #262628;
13
+}
14
15
+.theme-dark::-webkit-scrollbar-thumb {
16
+ background: #525257;
17
18
19
+.theme-dark::-webkit-scrollbar-track {
20
+ background: #262628;
21
0 commit comments