From 9787c13dc0e7277dffc4261a29ce672633b55ead Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Thu, 16 May 2024 21:02:47 +0200 Subject: [PATCH] styled the text scroll --- res/index/style.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/res/index/style.css b/res/index/style.css index 9a6fad3..888c92d 100644 --- a/res/index/style.css +++ b/res/index/style.css @@ -21,6 +21,27 @@ body background: #6F7270; color: #C1BFBE; padding: 1vh; + overflow-y: scroll; +} + +::-webkit-scrollbar +{ + width: 0.75vh; +} + +::-webkit-scrollbar-track +{ + background-color: #C1BFBE; +} + +::-webkit-scrollbar-thumb +{ + background-color: #888; +} + +::-webkit-scrollbar-thumb:hover +{ + background-color: #555; } #nav_buttons