From b9885b3cb0e406ea24f058978275a7e14b8873c3 Mon Sep 17 00:00:00 2001 From: Alexey Kasyanchuk Date: Mon, 16 Jul 2018 07:47:09 +0300 Subject: [PATCH] feat(scroll): smaller scrollbar for more comport view --- src/app/app.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/app/app.css b/src/app/app.css index f10c380..0baf657 100644 --- a/src/app/app.css +++ b/src/app/app.css @@ -231,4 +231,23 @@ to { -moz-transform: rotate(0deg); } +} + +body::-webkit-scrollbar { + width: 8px; +} + +body { + overflow-x: hidden; + width: calc(100% + 8px) !important; +} + +.header-main { + width: calc(100% + 8px) !important; +} + +body::-webkit-scrollbar-thumb { + background-color: darkgrey; + outline: 1px solid slategrey; + border-radius: 8px; } \ No newline at end of file