From 1cb93655db15dd30dfa2f234a7bf6b9ee53b7569 Mon Sep 17 00:00:00 2001 From: Beau Findlay Date: Tue, 12 Mar 2024 21:50:47 +0000 Subject: [PATCH] Add scrollbar style --- .../src/BeauFindlay.Client/wwwroot/css/app.css | 12 ++++++++++++ .../BeauFindlay.Client/wwwroot/css/app.min.css | 16 ++++++++++++++-- 2 files changed, 26 insertions(+), 2 deletions(-) diff --git a/BeauFindlay/src/BeauFindlay.Client/wwwroot/css/app.css b/BeauFindlay/src/BeauFindlay.Client/wwwroot/css/app.css index f01f334..2e4bccb 100644 --- a/BeauFindlay/src/BeauFindlay.Client/wwwroot/css/app.css +++ b/BeauFindlay/src/BeauFindlay.Client/wwwroot/css/app.css @@ -26,3 +26,15 @@ visibility: hidden !important; } +body::-webkit-scrollbar { + width: 14px; +} + +body::-webkit-scrollbar-track { + background: white; +} + +body::-webkit-scrollbar-thumb { + background-color: black; + border: 1px solid white; +} \ No newline at end of file diff --git a/BeauFindlay/src/BeauFindlay.Client/wwwroot/css/app.min.css b/BeauFindlay/src/BeauFindlay.Client/wwwroot/css/app.min.css index 31843cc..59cb078 100644 --- a/BeauFindlay/src/BeauFindlay.Client/wwwroot/css/app.min.css +++ b/BeauFindlay/src/BeauFindlay.Client/wwwroot/css/app.min.css @@ -984,6 +984,19 @@ video { visibility: hidden !important; } +body::-webkit-scrollbar { + width: 14px; +} + +body::-webkit-scrollbar-track { + background: white; +} + +body::-webkit-scrollbar-thumb { + background-color: black; + border: 1px solid white; +} + .placeholder\:text-gray-400::-moz-placeholder { --tw-text-opacity: 1; color: rgb(156 163 175 / var(--tw-text-opacity)); @@ -1094,5 +1107,4 @@ video { --tw-text-opacity: 1; color: rgb(75 85 99 / var(--tw-text-opacity)); } -} - +} \ No newline at end of file