You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(swap): sell amount renders at full size, not 14px (#286)
On the homepage swap section the amount you type rendered at 14px while the
amount you receive rendered at 44px, in the same widget, a few pixels apart.
The shadcn Input ships `md:text-sm`. tailwind-merge only evicts a conflicting
class within the SAME modifier, so the widget's bare `text-[44px]` replaced
`text-base` and left `md:text-sm` standing. Wherever the widget's container
was under `@2xl` — the homepage column — nothing outbid it above 768px, and
the sell field dropped to 14px. The full-width /swap page hid the bug because
`@2xl:text-[56px]` applied there, and phones hid it because `md:` did not.
Restating the size under `md:` is what actually evicts it.
Co-authored-by: Claude Opus 5 <noreply@anthropic.com>
0 commit comments