Skip to content

Commit

Permalink
feat(pricing): hide more info button on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
PixeledCode committed Oct 10, 2024
1 parent a74c616 commit d98aeab
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions packages/paste-website/stories/Pricing.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -141,12 +141,14 @@ const PricingCard = ({
</Box>
</Box>
)}
<Box>
<Separator orientation="horizontal" />
<Box marginTop="space70" display="flex" justifyContent="center">
<Button variant="link">More info</Button>
{!isMobile ? (
<Box>
<Separator orientation="horizontal" />
<Box marginTop="space70" display="flex" justifyContent="center">
<Button variant="link">More info</Button>
</Box>
</Box>
</Box>
) : null}
</Box>
</Card>
);
Expand Down

0 comments on commit d98aeab

Please sign in to comment.