Skip to content

Commit

Permalink
feat(ui-theme): increase scrollbar size (#2069)
Browse files Browse the repository at this point in the history
  • Loading branch information
skamril authored Jun 18, 2024
1 parent 0277275 commit d3a7497
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions webapp/src/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,20 @@ export const PAPER_BACKGROUND_NO_TRANSPARENCY = "#212c38";

export const scrollbarStyle = {
"&::-webkit-scrollbar": {
width: "7px",
height: "7px",
width: "10px",
height: "10px",
},
"&::-webkit-scrollbar-track": {
boxShadow: "inset 0 0 6px rgba(0, 0, 0, 0.3)",
},
"&::-webkit-scrollbar-thumb": {
backgroundColor: SECONDARY_MAIN_COLOR,
borderRadius: "10px",
border: "2px solid transparent",
backgroundClip: "padding-box",
},
"&::-webkit-scrollbar-thumb:hover": {
border: 0,
},
};

Expand Down

0 comments on commit d3a7497

Please sign in to comment.