chore: automated housekeeping...

This commit is contained in:
Pieter Vander Vennet 2024-09-02 12:48:15 +02:00
parent c10fecb7e8
commit f5d7686c98
234 changed files with 3493 additions and 2482 deletions

View file

@ -107,14 +107,14 @@
</script>
<div class="normal-background flex justify-between rounded-full pl-2">
<form class="flex w-full flex-wrap items-center ">
<form class="flex w-full flex-wrap items-center">
{#if isRunning}
<Loading>{Translations.t.general.search.searching}</Loading>
{:else}
<input
type="search"
style="border: none !important;"
class="w-full outline-none border-none mx-2"
class="mx-2 w-full border-none outline-none"
bind:this={inputElement}
on:keypress={(keypr) => {
feedback = undefined
@ -132,5 +132,5 @@
{/if}
{/if}
</form>
<SearchIcon aria-hidden="true" class="h-6 w-6 mx-2 self-center" on:click={performSearch} />
<SearchIcon aria-hidden="true" class="mx-2 h-6 w-6 self-center" on:click={performSearch} />
</div>