From 7121752402db0c5814887c0a8666df560badb10b Mon Sep 17 00:00:00 2001 From: jamey Date: Tue, 24 Feb 2026 14:37:32 +0000 Subject: [PATCH] fix inconsistent font size on contact form inputs 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 --- assets/css/shop/components.css | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/css/shop/components.css b/assets/css/shop/components.css index 253fcfb..031bc02 100644 --- a/assets/css/shop/components.css +++ b/assets/css/shop/components.css @@ -1682,6 +1682,7 @@ .contact-form .themed-input { width: 100%; padding: 0.5rem 1rem; + font-size: var(--t-text-base); } .contact-form-submit {