Skip to content

Commit

Permalink
Revert "fix: 💄 improve item page breakpoints"
Browse files Browse the repository at this point in the history
This reverts commit 4797632.
  • Loading branch information
lucca180 committed Nov 10, 2024
1 parent 4797632 commit 95d43db
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions pages/item/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ const ItemPage: NextPageWithLayout<ItemPageProps> = (props: ItemPageProps) => {
flex="1"
maxW={{ base: '100vh', md: '275px' }}
w={{ base: '100%', md: 'auto' }}
minW={{ base: '200px', lg: '275px' }}
minW="200px"
flexFlow="column"
gap={5}
>
Expand All @@ -282,12 +282,11 @@ const ItemPage: NextPageWithLayout<ItemPageProps> = (props: ItemPageProps) => {
<Flex
flex="3"
gap={{ base: 4, md: 6 }}
flexDir={{ base: 'column', lg: 'row' }}
flexFlow={{ base: 'column', lg: 'row' }}
maxW={{ base: '100vh', md: 'none' }}
w={{ base: '100%', md: 'auto' }}
flexWrap="wrap"
>
<Flex flex="2" flexFlow="column" gap={{ base: 4, md: 6 }} maxW="785px">
<Flex flex="2" flexFlow="column" gap={{ base: 4, md: 6 }}>
{user && user.isAdmin && <ManualCheckCard item={item} />}
{item.isMissingInfo && <MissingInfoCard />}

Expand Down

0 comments on commit 95d43db

Please sign in to comment.