Skip to content

Commit

Permalink
Merge pull request #1963 from zetkin/issue-1961/overflow-y-auto
Browse files Browse the repository at this point in the history
Use overflow: auto rather than overflow: scroll on panes
  • Loading branch information
kaulfield23 committed May 16, 2024
2 parents 51d1f18 + cbd604d commit 8e20adc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/panes/Pane.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const Pane: FC<PaneProps> = ({ children, onClose }) => {
<Box
sx={{
flex: 1,
overflowY: 'scroll',
overflowY: 'auto',
padding: 2,
}}
>
Expand Down

0 comments on commit 8e20adc

Please sign in to comment.