Skip to content

Commit f0eb4cc

Browse files
committed
client: colored the scrollbars
1 parent bbd948c commit f0eb4cc

File tree

5 files changed

+29
-7
lines changed

5 files changed

+29
-7
lines changed

client/build/asset-manifest.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/index.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/static/css/main.58bab497.css renamed to client/build/static/css/main.9cbc12c5.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/build/static/css/main.58bab497.css.map renamed to client/build/static/css/main.9cbc12c5.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/src/index.css

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
11
@tailwind base;
22
@tailwind components;
33
@tailwind utilities;
4+
5+
* {
6+
scrollbar-color: dark;
7+
}
8+
9+
*::-webkit-scrollbar {
10+
height: .5rem;
11+
width: .5rem;
12+
}
13+
14+
*::-webkit-scrollbar-track {
15+
background: #424242;
16+
}
17+
18+
*::-webkit-scrollbar-thumb {
19+
background-color: #7b7b7b;
20+
transition: .3s ease-in-out;
21+
}
22+
23+
*::-webkit-scrollbar-thumb:hover {
24+
background-color: #979797;
25+
}

0 commit comments

Comments
 (0)