From a6bf342dea1ab5104203ecbf236e5f54bebda3e1 Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Thu, 2 Aug 2018 17:15:41 +0530 Subject: [PATCH] * scroll styles --- src/app/SearchField.css | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/src/app/SearchField.css b/src/app/SearchField.css index 7b05434..f918896 100644 --- a/src/app/SearchField.css +++ b/src/app/SearchField.css @@ -211,4 +211,33 @@ text-shadow: 2px 0 blue; animation: glitch-text-anim-2 3s infinite linear alternate-reverse; } + + /* Scrollbar styles */ + /* width */ +::-webkit-scrollbar { + width: 8px; +} + +/* Track */ +::-webkit-scrollbar-track { + box-shadow: inset 0 0 5px #fff; +} + +/* Handle */ +::-webkit-scrollbar-thumb { + background: #000; + +} + +/* Handle on hover */ +::-webkit-scrollbar-thumb:hover { + background: #272727; + cursor: pointer; +} + +::-webkit-scrollbar-button { +background: #636363; + color: #fff; + height: 10px; +} \ No newline at end of file