Skip to content

Commit

Permalink
Unifies color and scrollbar height/width
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecmart committed Jul 4, 2024
1 parent 9a6a160 commit 8ae246a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion apps/electron/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -833,6 +833,7 @@ textarea {

*::-webkit-scrollbar {
width: 8px;
height: 8px;
background-color: transparent;
}

Expand All @@ -843,7 +844,7 @@ textarea {

*::-webkit-scrollbar-thumb {
border-radius: 8px;
background-color: var(--color10);
background-color: var(--gray7);
box-sizing: border-box
}

3 changes: 2 additions & 1 deletion apps/next/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -833,6 +833,7 @@ textarea {

*::-webkit-scrollbar {
width: 8px;
height: 8px;
background-color: transparent;
}

Expand All @@ -843,7 +844,7 @@ textarea {

*::-webkit-scrollbar-thumb {
border-radius: 8px;
background-color: var(--color10);
background-color: var(--gray7);
box-sizing: border-box
}

Expand Down

0 comments on commit 8ae246a

Please sign in to comment.