We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bddae5e commit 57382f2Copy full SHA for 57382f2
src/pages/wrapper.tsx
@@ -8,10 +8,10 @@ interface Props {
8
export function PageWrapper(props: Props) {
9
const ios =
10
typeof navigator !== 'undefined' && /iPad|iPhone|iPod/.test(navigator.userAgent)
11
- const footerPadding = ios ? 'pb-25' : 'pb-4'
+ const paddingBottom = ios ? 'pb-25 pt-25' : 'pb-4'
12
13
return (
14
- <div className={`h-screen overflow-y-auto ${footerPadding}`}>
+ <div className={`h-screen overflow-y-auto ${paddingBottom}`}>
15
{/* <userContext.Provider value={userContextValue}> */}
16
<NavbarLayout />
17
{props.children}
0 commit comments