From 2c1719ba0521085b850c799ef3ac2fa60ca14a55 Mon Sep 17 00:00:00 2001 From: Zak Timson Date: Wed, 14 Nov 2018 14:50:04 -0500 Subject: [PATCH] Added new scroll bar --- src/styles.scss | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/styles.scss b/src/styles.scss index d0a602f..1281296 100644 --- a/src/styles.scss +++ b/src/styles.scss @@ -3,6 +3,22 @@ @import "~@angular/material/prebuilt-themes/indigo-pink.css"; @import url('https://cdnjs.cloudflare.com/ajax/libs/weather-icons/2.0.9/css/weather-icons.min.css'); +::-webkit-scrollbar-track { + border-radius: 10px; + background-color: rgba(0, 0, 0, 0); +} + +::-webkit-scrollbar { + width: 8px; + background-color: rgba(0, 0, 0, 0); +} + +::-webkit-scrollbar-thumb { + border-radius: 4px; + background-color: #555; +} + + html, body { padding: 0; margin: 0;