pnpm format

wrw
This commit is contained in:
idonahue 2023-04-27 16:29:22 +02:00
parent 7ea7d68af1
commit 15c05edf42

View File

@ -226,10 +226,9 @@
<!-- Command list -->
<ul class="command-pallete-content-container flex-auto overflow-y-auto">
{#each $commandGroups as group, groupIdx}
{#await group then group}
<li
class="w-full cursor-default select-none px-2 my-2 "
class="my-2 w-full cursor-default select-none px-2 "
class:hidden={group.commands.length === 0}
>
<header class="command-palette-section-header result-section-header">
@ -270,13 +269,14 @@
</ul>
</li>
{/await}
{/each}
</ul>
{#await $visibleEntriesCount then resultsCount}
{#if resultsCount === 0}
<div class="flex flex-1 flex-col items-center justify-center">
<span class="px-4 py-2.5 w-full text-zinc-300 font-semibold leading-8">Nothing turned up. Try again?</span>
<span class="w-full px-4 py-2.5 font-semibold leading-8 text-zinc-300"
>Nothing turned up. Try again?</span
>
</div>
{/if}
{/await}
@ -289,7 +289,7 @@
/* @apply pt-2; */
}
.quick-command-item:hover {
@apply bg-zinc-50/5 rounded-sm;
@apply rounded-sm bg-zinc-50/5;
}
.selected,