Bug: Input fields in login/signup modals are too small #235
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Describe the bug
The text input fields across the authentication and sign-up modals (e.g., "Sign up with Email", "Log In", "Password Reset") are visually truncated and no longer expand to fill their container width. Instead, they collapse to their minimum intrinsic size, leaving a large amount of empty space next to the input labels and making them difficult to interact with.
To Reproduce
Root Cause
This issue was introduced in a recent PR that modified
src/lib/components/FieldInline.svelte. The layout ofFieldInlinewas changed from a CSS Grid to a Flexbox layout.Specifically, the wrapper
<div>around the input snippet was given ashrink-0class: