Compare commits

1 Commits

Author SHA1 Message Date
b67e4e0f82 fix: prevent input field overflow on mobile by ensuring equal margins
All checks were successful
CI / update (push) Successful in 1m10s
Adds box-sizing: border-box to all filter inputs after 'all: unset' to ensure padding is included within the 100% width calculation, preventing horizontal overflow and ensuring equal left/right margins on small screens.
2026-01-02 22:17:32 +01:00

View File

@@ -350,7 +350,7 @@ h4{
isLoggedIn={!!data.session?.user}
/>
{#if data.note && data.note.trim()}
{#if data.note}
<RecipeNote note={data.note}></RecipeNote>
{/if}
</div>