Skip to content

Commit

Permalink
Update custom scroller thumb background color
Browse files Browse the repository at this point in the history
  • Loading branch information
diksipav committed Mar 11, 2024
1 parent 881b16d commit b20f408
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions shared/common/ui/customScrollbar/customScrollbar.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,13 @@
.scroller {
width: 6px;
height: 6px;
background: rgba(0, 0, 0, 0.1);
// background: rgba(0, 0, 0, 0.1);
background: var(--grey85);
border-radius: 4px;

@include darkTheme {
background: rgba(255, 255, 255, 0.1);
// background: rgba(255, 255, 255, 0.1);
background: var(--grey20);
}
}

Expand Down
2 changes: 1 addition & 1 deletion shared/studio/tabs/schema/textView.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
background-color: #fff;
border-radius: 6px;
padding: 0 12px;
justify-content: start;
justify-content: flex-start;
}

& > svg {
Expand Down

0 comments on commit b20f408

Please sign in to comment.