From d8b31ad0ef6d8bf924f0e2a2d32f5a8aa2751cca Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sun, 10 May 2026 17:55:42 +0200 Subject: [PATCH] Fix input width style in optional-profile-form by enforcing `!w-20` class --- web/components/optional-profile-form.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/optional-profile-form.tsx b/web/components/optional-profile-form.tsx index 80d3fcd4..4e353fe5 100644 --- a/web/components/optional-profile-form.tsx +++ b/web/components/optional-profile-form.tsx @@ -992,7 +992,7 @@ export const OptionalProfileUserForm = (props: { const value = e.target.value === '' ? null : Number(e.target.value) setProfile('drinks_per_month', value) }} - className={'w-20'} + className={'!w-20'} min={0} value={profile['drinks_per_month'] ?? undefined} />