Skip to content

Commit

Permalink
Add filter menu top padding
Browse files Browse the repository at this point in the history
Add padding to top of overlay on mobile

closes #82
  • Loading branch information
TangoYankee committed Aug 22, 2024
1 parent 6d2e6ab commit 6eb74bc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/components/Overlay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ export const Overlay = ({ children }: OverlayProps) => {
return (
<Flex
position="relative"
padding={{ base: 0, lg: 8 }}
paddingX={{ base: 0, lg: 8 }}
paddingBottom={{ base: 0, lg: 8 }}
paddingTop={{ base: 3, lg: 8 }}
height={"100vh"}
width={"100vw"}
direction={{ base: "column", lg: "row" }}
Expand Down

0 comments on commit 6eb74bc

Please sign in to comment.