Skip to content

Commit

Permalink
CSS: Fix scrollbar on Chromium (FUCK GOOGLE)
Browse files Browse the repository at this point in the history
  • Loading branch information
xjunko committed Jan 30, 2025
1 parent ee2eed2 commit 95c1350
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -379,4 +379,17 @@ img[src*="#center"] {
.grid-justify {
display: flex;
justify-content: space-between;
}

/* disable scrollbar overall (because chrome ruins it) */
.window::-webkit-scrollbar {
display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.window {
-ms-overflow-style: none;
/* IE and Edge */
scrollbar-width: none;
/* Firefox */
}

0 comments on commit 95c1350

Please sign in to comment.