Skip to content

Commit

Permalink
fix: grid cols pricing cards
Browse files Browse the repository at this point in the history
  • Loading branch information
mickasmt committed May 29, 2024
1 parent f26f3a5 commit 4f8bb3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/pricing-cards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export function PricingCards({ userId, subscriptionPlan }: PricingCardsProps) {
</ToggleGroup>
</div>

<div className="grid gap-5 bg-inherit py-5 md:grid-cols-3 lg:grid-cols-3">
<div className="grid gap-5 bg-inherit py-5 lg:grid-cols-3">
{pricingData.map((offer) => (
<PricingCard offer={offer} key={offer.title} />
))}
Expand Down

0 comments on commit 4f8bb3b

Please sign in to comment.