From 39b15f1314236c9db6110a57e09d92cf859cc174 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Kr=C4=8Dek?= Date: Sat, 19 Jul 2025 19:19:22 +0200 Subject: [PATCH] Fixes for small screens --- src/lib/components/wizard/StepSheetSearch.svelte | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/lib/components/wizard/StepSheetSearch.svelte b/src/lib/components/wizard/StepSheetSearch.svelte index 943161b..c8d3134 100644 --- a/src/lib/components/wizard/StepSheetSearch.svelte +++ b/src/lib/components/wizard/StepSheetSearch.svelte @@ -90,7 +90,7 @@ type="text" bind:value={searchQuery} placeholder="Type sheet name..." - class="flex-grow rounded-l-lg border border-gray-300 px-4 py-2 focus:border-transparent focus:ring-2 focus:ring-blue-600" + class="flex-grow min-w-0 rounded-l-lg border border-gray-300 px-4 py-2 focus:border-transparent focus:ring-2 focus:ring-blue-600" onkeydown={(e) => { if (e.key === 'Enter') handleSearch(); }} @@ -142,19 +142,19 @@ if (e.key === 'Enter' || e.key === ' ') handleSelectSheet(sheet); }} > -
+

{sheet.name}

-

ID: {sheet.id}

+

ID: {sheet.id}

{#if sheet.iconLink} - Sheet icon + Sheet icon {/if} {#if $selectedSheet?.spreadsheetId === (sheet.spreadsheetId || sheet.id)} - +