fix inconsistent font size on contact form inputs
All checks were successful
deploy / deploy (push) Successful in 59s

themed-input was inheriting font size from its container rather than
being set explicitly, so contact form inputs appeared larger than
the compact inline inputs in cards like "Track your order".

Added font-size: var(--t-text-base) to the contact form context rule
so both inputs are intentionally sized rather than relying on inheritance.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jamey 2026-02-24 14:37:32 +00:00
parent cf87c3ff03
commit 7121752402

View File

@ -1682,6 +1682,7 @@
.contact-form .themed-input {
width: 100%;
padding: 0.5rem 1rem;
font-size: var(--t-text-base);
}
.contact-form-submit {