🎨 Sort classes (#1750)

This commit is contained in:
Luke Vella 2025-06-03 09:24:33 +01:00 committed by GitHub
parent af7b0a82d1
commit dcc41eb0f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
120 changed files with 374 additions and 365 deletions

View file

@ -40,7 +40,7 @@ export const BillingPlanPrice = ({
}: React.PropsWithChildren<{ discount?: React.ReactNode }>) => {
return (
<div className="flex items-center gap-4">
<span className="text-3xl font-bold">{children}</span>
<span className="font-bold text-3xl">{children}</span>
</div>
);
};