Skip to content

Commit

Permalink
fix: scrollbar invisible
Browse files Browse the repository at this point in the history
  • Loading branch information
surunzi committed Dec 28, 2024
1 parent e60b028 commit dbc0334
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/renderer/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ body {
}

::-webkit-scrollbar {
width: 8px;
width: 10px;
height: 10px;
}
::-webkit-scrollbar-track {
Expand All @@ -126,13 +126,14 @@ body {
background-color: transparent;
}
::-webkit-scrollbar-thumb {
background-color: var(--aya-color-fill-tertiary);
background-color: var(--aya-color-border);
transition: background-color 0.2s;
background-clip: padding-box;
border: solid transparent;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background-color: var(--aya-color-fill-secondary);
background-color: var(--aya-color-primary);
}

.button {
Expand Down

0 comments on commit dbc0334

Please sign in to comment.