From 6f284a15e0133dc9d8b97525c9a0299e2079718d Mon Sep 17 00:00:00 2001 From: Weilbyte Date: Sun, 24 Feb 2019 19:48:38 +0100 Subject: [PATCH] Hide scrollbar --- discordDark.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/discordDark.css b/discordDark.css index f3939a8..07e4999 100644 --- a/discordDark.css +++ b/discordDark.css @@ -367,3 +367,12 @@ color: #7289da; } +/* Hide ugly scrollbars */ +html { + overflow: scroll; + overflow-x: hidden; +} +::-webkit-scrollbar { + width: 0px; /* remove scrollbar space */ + background: transparent; /* optional: just make scrollbar invisible */ +}