feat(scroll): smaller scrollbar for more comport view

This commit is contained in:
Alexey Kasyanchuk
2018-07-16 07:47:09 +03:00
parent 376ddc7678
commit b9885b3cb0

View File

@ -231,4 +231,23 @@
to { to {
-moz-transform: rotate(0deg); -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;
} }