Skip to content

Commit

Permalink
Remove vertical padding on Layout mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
Baptiste committed Jul 26, 2023
1 parent c2698d4 commit 8502257
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layout/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const Layout = ({ children }: Props) => {
lightTheme ? "bg-white text-gray-900" : "bg-gray-900 text-white"
)}`}
>
<div className="mx-auto max-w-screen-xl px-4 py-10 flex h-screen items-center">
<div className="mx-auto max-w-screen-xl px-4 lg:py-10 flex h-screen items-center">
<div className="mx-auto max-w-3xl text-center">{children}</div>
</div>
<button onClick={handleThemeChange} className=" absolute bottom-1 left-1"
Expand Down

0 comments on commit 8502257

Please sign in to comment.