@humandialog/forms.svelte 1.4.10 → 1.4.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -185,7 +185,7 @@
|
|
|
185
185
|
</script>
|
|
186
186
|
|
|
187
187
|
{#if view==TAGS_PALETTE}
|
|
188
|
-
<menu class="{userClass} flex flex-column {gap} flex-wrap mr-1 sm:mr-0 sm:w-72">
|
|
188
|
+
<menu class="{userClass} flex flex-column {gap} flex-wrap mr-1 sm:mr-0 sm:w-72 text-stone-600 dark:text-stone-300">
|
|
189
189
|
<p class="flex flex-row {gap} flex-wrap ">
|
|
190
190
|
{#key filteredTags}
|
|
191
191
|
{#if filteredTags.length > 0}
|
|
@@ -206,7 +206,7 @@
|
|
|
206
206
|
|
|
207
207
|
<input type="text" name="text" id="text"
|
|
208
208
|
autocomplete="off"
|
|
209
|
-
class="block bg-stone-100 dark:bg-stone-800 flex-1"
|
|
209
|
+
class="block bg-stone-100 dark:bg-stone-800 flex-1 text-stone-700 dark:text-stone-200"
|
|
210
210
|
bind:value={inputText}
|
|
211
211
|
on:input={onTextInput}
|
|
212
212
|
on:blur={onTextBlur}
|