Add missing padding top in reader mobile header

Regression d844ad3f5d
This commit is contained in:
schroda
2024-12-22 21:59:28 +01:00
parent 0ea2f93651
commit 056db542df

View File

@@ -76,7 +76,7 @@ const BaseReaderOverlayHeaderMobile = ({
left: 0,
right: `${scrollbarYSize}px`,
p: 2,
pt: (theme) => `env(safe-area-inset-top, ${theme.spacing(2)})`,
pt: (theme) => `max(env(safe-area-inset-top), ${theme.spacing(2)})`,
backgroundColor: (theme) => alpha(theme.palette.background.paper, 0.95),
pointerEvents: 'all',
}}