From a5399728c155fceb0da60e36d225a673f34ac3e2 Mon Sep 17 00:00:00 2001 From: Ilion Beyst Date: Sun, 21 Aug 2022 21:36:47 +0200 Subject: make scroll bars less ugly in chrome --- web/pw-server/src/routes/style.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'web/pw-server/src/routes') 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; +} -- cgit v1.2.3