1 Commits

Author SHA1 Message Date
kudinDmitriyUp
76501edccd Bob AI: Set the overflow property to 'hidden' for the 'Pro Plan' com 2026-04-24 18:06:30 +00:00

View File

@@ -63,7 +63,7 @@ const PricingCenteredCards = ({
>
<GridOrCarousel>
{plans.map((plan) => (
<div key={plan.tag} className="flex flex-col items-center gap-5 p-5 h-full card rounded text-center">
<div key={plan.tag} className="flex flex-col items-center gap-5 p-5 h-full card rounded overflow-hidden text-center">
<span className="px-5 py-2 text-sm card rounded">{plan.tag}</span>
<div className="flex flex-col gap-1">
@@ -96,4 +96,4 @@ const PricingCenteredCards = ({
</section>
);
export default PricingCenteredCards;
export default PricingCenteredCards;