Skip to content

Commit

Permalink
fix(ui): vertical scrollbars not visible
Browse files Browse the repository at this point in the history
Fixes #4014
  • Loading branch information
robertsLando committed Nov 21, 2024
1 parent 9f9fc56 commit db1b647
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions src/assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,10 @@
::-webkit-scrollbar {
height: 10px;
width: 8px;
background: rgba(0, 0, 0, 0.233);
background: rgba(0, 0, 0, 0.4);
padding-right: 10;
}

/* hide scroolbars on body */
body::-webkit-scrollbar {
display: none;
}

::-webkit-scrollbar-thumb {
background: black;
border-radius: 1ex;
Expand All @@ -27,7 +22,7 @@ https://syntackle.com/blog/changes-to-scrollbar-styling-in-chrome-121/
@supports not selector(::-webkit-scrollbar) {
html {
scrollbar-width: thin;
scrollbar-color: rgba(0, 0, 0, 0.233);
scrollbar-color: rgba(0, 0, 0, 0.4);
}
}

Expand Down

0 comments on commit db1b647

Please sign in to comment.