Skip to content

Commit

Permalink
merge-upstream: remove some nonsensical scrollbars
Browse files Browse the repository at this point in the history
  • Loading branch information
GarboMuffin committed Dec 30, 2023
1 parent 09f93a1 commit f2eb878
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/components/asset-panel/selector.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ $fade-out-distance: 100px;
/* Must have some height (recalculated by flex-grow) in order to scroll */
height: 0;
flex-grow: 1;
overflow-y: scroll;
overflow-y: auto;
overflow-x: hidden;
display: flex;
flex-direction: column;
}
Expand Down
3 changes: 2 additions & 1 deletion src/components/gui/gui.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@
/*
Stop scrollbar popping in and out from scratch-blocks border issue
https://github.com/LLK/scratch-gui/issues/318
TW: and also fix double horizontal scrollbar at some screen sizes in paint editor
*/
overflow-y: hidden;
overflow: hidden;
}

.editor-wrapper {
Expand Down

0 comments on commit f2eb878

Please sign in to comment.