aboutsummaryrefslogtreecommitdiff
path: root/web/pw-server
diff options
context:
space:
mode:
authorIlion Beyst <ilion.beyst@gmail.com>2022-08-21 21:36:47 +0200
committerIlion Beyst <ilion.beyst@gmail.com>2022-08-21 21:36:47 +0200
commita5399728c155fceb0da60e36d225a673f34ac3e2 (patch)
tree87d688a6ed25dab29bb42861c2cf6b9d8218d96e /web/pw-server
parent8eec57f5606c1d1757383f4c0ca40d2cc3334572 (diff)
downloadplanetwars.dev-a5399728c155fceb0da60e36d225a673f34ac3e2.tar.xz
planetwars.dev-a5399728c155fceb0da60e36d225a673f34ac3e2.zip
make scroll bars less ugly in chrome
Diffstat (limited to 'web/pw-server')
-rw-r--r--web/pw-server/src/routes/style.css14
1 files changed, 14 insertions, 0 deletions
diff --git a/web/pw-server/src/routes/style.css b/web/pw-server/src/routes/style.css
index f7d5388..fa72c7e 100644
--- a/web/pw-server/src/routes/style.css
+++ b/web/pw-server/src/routes/style.css
@@ -2,3 +2,17 @@ body {
margin: 0;
font-family: Roboto, Helvetica, sans-serif;
}
+
+/* generic scrollbar styling for chrome & friends */
+::-webkit-scrollbar {
+ width: 5px;
+}
+
+::-webkit-scrollbar-thumb {
+ background: #bdbdbd;
+ border-radius: 3px;
+}
+
+::-webkit-scrollbar-thumb:hover {
+ background: #6e6e6e;
+}