From 73bab7d375ac27979943997f0f94cd75da1530d7 Mon Sep 17 00:00:00 2001 From: dogeystamp Date: Mon, 12 Jun 2023 19:54:38 -0400 Subject: [PATCH] style.css: remove custom scrollbar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit saw some essay about why it's a bad idea so ¯\_(ツ)_/¯ for posterity: https://ericwbailey.website/published/dont-use-custom-css-scrollbars/ --- public/css/style.css | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/public/css/style.css b/public/css/style.css index acd1f34..77d3544 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -36,19 +36,6 @@ body { font-size: 110%; } -::-webkit-scrollbar { - width: 1vmin; - height: 1vmin; -} - -::-webkit-scrollbar-track { - background-color: #050505; -} - -::-webkit-scrollbar-thumb { - background-color: #151515; -} - .header { margin-top: 5%; }