Skip to content

Commit

Permalink
fix: improve scrollbar style on windows platform (#665)
Browse files Browse the repository at this point in the history
  • Loading branch information
kiwiwong authored Feb 23, 2022
1 parent f5e3a35 commit 0be561d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/components/scrollable/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,8 @@ $react-custom-scrollbars: '.ScrollbarsCustom';
&-Wrapper {
height: 100%;
}

&-Scroller::-webkit-scrollbar {
display: none;
}
}
2 changes: 1 addition & 1 deletion src/workbench/editor/welcome/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ $border-color: rgba(115, 115, 115, 0.4);
.keys {
display: grid;
grid-gap: 32px;
grid-template-columns: 1fr minmax(47px, min-content);
grid-template-columns: 1fr minmax(47px, max-content);
text-align: left;
}
}
Expand Down

0 comments on commit 0be561d

Please sign in to comment.