fix(i18n): popular badge whitespace-nowrap — prevents RU text wrapping
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
c596e47476
commit
faf60b4b71
2 changed files with 2 additions and 2 deletions
|
|
@ -180,7 +180,7 @@ export default function Pricing() {
|
|||
>
|
||||
{pack.popular && (
|
||||
<div className="absolute -top-3.5 left-1/2 -translate-x-1/2">
|
||||
<span className="px-4 py-1 rounded-full text-xs font-bold bg-primary text-primary-foreground shadow-sm">
|
||||
<span className="px-4 py-1 rounded-full text-xs font-bold bg-primary text-primary-foreground shadow-sm whitespace-nowrap">
|
||||
{t('pricing.popular_badge')}
|
||||
</span>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -149,7 +149,7 @@ export default function Billing() {
|
|||
>
|
||||
{isPopular && (
|
||||
<div className="absolute -top-3.5 left-1/2 -translate-x-1/2">
|
||||
<span className="px-4 py-1 rounded-full text-xs font-bold bg-primary text-primary-foreground">{t('billing.most_popular')}</span>
|
||||
<span className="px-4 py-1 rounded-full text-xs font-bold bg-primary text-primary-foreground whitespace-nowrap">{t('billing.most_popular')}</span>
|
||||
</div>
|
||||
)}
|
||||
<h3 className="font-display font-bold text-lg text-foreground mb-1">{pack.name}</h3>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue