From 3d9fd8bcf516b152d0a0075a1fc9d95734dbbf0f Mon Sep 17 00:00:00 2001 From: Valentin Kaelin Date: Sun, 13 Oct 2019 15:51:47 +0200 Subject: [PATCH] feat: add custom scrollbar (chrome) --- client/src/assets/css/base.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/client/src/assets/css/base.css b/client/src/assets/css/base.css index 49c7178..f950284 100644 --- a/client/src/assets/css/base.css +++ b/client/src/assets/css/base.css @@ -1,5 +1,20 @@ @import url('https://fonts.googleapis.com/css?family=Lato:300,400,700,900'); +::-webkit-scrollbar { + width: 8px; + height: 8px +} + +::-webkit-scrollbar, +::-webkit-scrollbar-track { + background: rgba(23, 49, 79, .6); +} + +::-webkit-scrollbar-thumb { + background-color: rgba(194, 217, 254, .6); + border-radius: 8px +} + .min-w-1200 { min-width: 1200px;; }