Skip to content

Commit

Permalink
fix: allow scrolling from any part of the add photos page (#14141)
Browse files Browse the repository at this point in the history
* chore

* chore: address review comment
  • Loading branch information
dariakoko authored Jul 2, 2024
1 parent 4db84f5 commit b1b3920
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/Apps/Sell/Components/SubmissionLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,11 @@ export const SubmissionLayout: React.FC<SubmissionLayoutProps> = ({
</Column>
</GridColumns>
) : (
<FadeInBox maxWidth="100vw" width={CONTENT_WIDTH} p={2} pt={[2, 4]}>
{children}
</FadeInBox>
<Flex width="100vw" justifyContent="center">
<FadeInBox maxWidth="100vw" width={CONTENT_WIDTH} p={2} pt={[2, 4]}>
{children}
</FadeInBox>
</Flex>
)}
</Flex>

Expand Down

0 comments on commit b1b3920

Please sign in to comment.