Fix WideScreens
Dieser Commit ist enthalten in:
Ursprung
b3b1e460bb
Commit
fc2efcf617
@ -18,10 +18,9 @@
|
|||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
<Search bind:value={searchValue} on:focus={() => focus = true} on:keydown={() => focus = true}/>
|
<Search bind:value={searchValue} on:focus={() => focus = true} on:keydown={() => focus = true}/>
|
||||||
{#if (openDropdown)}
|
{#if (openDropdown)}
|
||||||
<Dropdown class="z-10" open>
|
<Dropdown open class="z-10">
|
||||||
{#each filteredItems as item}
|
{#each filteredItems as item}
|
||||||
<DropdownItem on:click={() => selectItem(item)}>
|
<DropdownItem on:click={() => selectItem(item)}>
|
||||||
{item.name}
|
{item.name}
|
||||||
|
@ -50,7 +50,7 @@
|
|||||||
</Button>
|
</Button>
|
||||||
|
|
||||||
<h1 class="text-3xl mt-4 ml-4">Upcoming</h1>
|
<h1 class="text-3xl mt-4 ml-4">Upcoming</h1>
|
||||||
<div class="grid gap-4 p-4 border-b mx-4" style="grid-template-columns: repeat(auto-fill, minmax(300px, 1fr))">
|
<div class="grid gap-4 p-4 border-b" style="grid-template-columns: repeat(auto-fill, minmax(300px, 1fr))">
|
||||||
{#each data.filter((e) => e.start > millis) as event}
|
{#each data.filter((e) => e.start > millis) as event}
|
||||||
<EventCard {event} />
|
<EventCard {event} />
|
||||||
{/each}
|
{/each}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren