remove scrollbar height and border-radius

In order to match the theme presentation
(https://i.imgur.com/cCiHOGS.jpg), the previous defined `height: 7px` and
`border-radius: 10px` for the scrollbar have been deleted.
This commit is contained in:
k 2021-05-23 17:39:39 -05:00
parent 0210219983
commit e31777b985

View File

@ -52,20 +52,11 @@
margin-bottom: var(--section-separation);
overflow-x: auto;
/* scrollbar styles for Firefox */
/* Scrollbar styles for Firefox */
scrollbar-width: thin;
scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
/* scrollbar styles for Chromium */
&::-webkit-scrollbar {
height: 7px;
border-radius: 10px;
}
&::-webkit-scrollbar-thumb, &::-webkit-scrollbar-track {
border-radius: 10px;
}
/* Scrollbar styles for Chromium */
&::-webkit-scrollbar-thumb {
background-color: var(--scrollbar-thumb);
}