Fix input width style in optional-profile-form by enforcing !w-20 class

This commit is contained in:
MartinBraquet
2026-05-10 17:55:42 +02:00
parent 00c1fc5c98
commit d8b31ad0ef

View File

@@ -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}
/>