Skip to content

Commit

Permalink
amended padding-top to accommodate ZoomControls component
Browse files Browse the repository at this point in the history
  • Loading branch information
r00dgirl committed Feb 19, 2024
1 parent 34dfb1f commit 81f3fcd
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,14 @@ export const PublicFormWrapper = ({
})

return (
<Flex bg={bgColour} p={{ base: 0, md: '1.5rem' }} flex={1} justify="center">
<Flex
bg={bgColour}
px={{ base: 0, md: '1.5rem' }}
pt={{ base: 0, md: '2.75rem' }}
pb={{ base: 0, md: '1.5rem' }}
flex={1}
justify="center"
>
{isAuthRequired ? null : <SectionSidebar />}
<Flex flexDir="column" maxW="57rem" w="100%">
{children}
Expand Down

0 comments on commit 81f3fcd

Please sign in to comment.