Skip to content

Commit

Permalink
Mobile landscape needs more spacing from edge of screen (#188)
Browse files Browse the repository at this point in the history
Fixes #177
  • Loading branch information
andrew-codes authored Feb 9, 2024
2 parents 4fc990e + 96578c4 commit 32a86a9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apps/playnite-web/src/components/OuterScroll.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ const OuterScroll: FC<PropsWithChildren<{}>> = ({ children }) => {
[theme.breakpoints.down('lg')]: {
overflowY: 'auto',
scrollbarColor: `${theme.palette.text.primary} ${theme.palette.background.default}`,
padding: `0 ${theme.spacing(2.5)} 0 ${theme.spacing(3)}`,
},
[theme.breakpoints.only('md')]: {
padding: `0 ${theme.spacing(3)} 0 ${theme.spacing(5)}`,
},
})}
>
Expand Down

0 comments on commit 32a86a9

Please sign in to comment.