Skip to content

Commit

Permalink
fix(mobile): adjust body padding-bottom for app tab (#8944)
Browse files Browse the repository at this point in the history
  • Loading branch information
CatsJuice committed Dec 2, 2024
1 parent 6a71b28 commit b600f2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/frontend/core/src/mobile/styles/mobile.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ globalStyle('body', {
overflowY: 'unset',
});
globalStyle('body:has(#app-tabs)', {
paddingBottom: globalVars.appTabHeight,
paddingBottom: `calc(${globalVars.appTabHeight} + env(safe-area-inset-bottom))`,
});
globalStyle('html', {
height: '100dvh',
Expand Down

0 comments on commit b600f2b

Please sign in to comment.