Skip to content

Commit

Permalink
Reverse tiers on mobile (#5212)
Browse files Browse the repository at this point in the history
  • Loading branch information
WRadoslaw authored Nov 6, 2023
1 parent e457a91 commit cac5b84
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,13 @@ export const CenteredLayoutFlex = styled(FlexBox)`

export const TierCardWrapper = styled(GridItem)`
width: 100%;
display: grid;
grid-template-columns: 1fr;
display: flex;
flex-direction: column-reverse;
gap: ${sizes(4)};
justify-content: center;
${media.sm} {
display: grid;
justify-content: center;
grid-template-columns: repeat(2, auto);
}
Expand Down

0 comments on commit cac5b84

Please sign in to comment.