From 9b2da2dbf1455bafb281eb12f1012694fae48715 Mon Sep 17 00:00:00 2001 From: SphericalKat Date: Thu, 7 Oct 2021 09:10:54 +0530 Subject: [PATCH] feat(ui): use custom scrollbars Signed-off-by: SphericalKat --- assets/css/app.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/assets/css/app.css b/assets/css/app.css index 1ad60ae..f208286 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -81,6 +81,19 @@ textarea { font-weight: bold; } +::-webkit-scrollbar { + width: 8px; + height: 8px; +} +::-webkit-scrollbar-corner, +::-webkit-scrollbar-track { + background: transparent; +} +::-webkit-scrollbar-thumb { + border-radius: 8px; + @apply bg-amber; +} + .alert { width: 100%; text-align: center;