pnpm format

This commit is contained in:
Nikita Galaiko 2023-03-28 09:51:09 +02:00
parent 88411fe0e6
commit eed758a346
No known key found for this signature in database
GPG Key ID: EBAB54E845BA519D
5 changed files with 3 additions and 10 deletions

View File

@ -15,13 +15,10 @@
height: 0;
}
/* COMMAND PALETTE */
.result-section-header {
@apply mb-2 mt-2 mx-2 cursor-default select-none py-2 text-sm font-semibold text-zinc-300;
@apply mx-2 mb-2 mt-2 cursor-default select-none py-2 text-sm font-semibold text-zinc-300;
}
.quick-command-item {

View File

@ -219,9 +219,7 @@
{#each commandGroups as group, groupIdx}
{#if group.visible}
<div class="mx-2 cursor-default select-none">
<p
class="result-section-header"
>
<p class="result-section-header">
<span>{group.name}</span>
{#if group.description}
<span class="ml-2 font-light italic text-zinc-300/70">({group.description})</span>

View File

@ -58,7 +58,6 @@
'Shift+c': () => {
if ($currentProject) {
goto(`/projects/${$currentProject?.id}/commit`);
}
},
r: () => {

View File

@ -51,7 +51,7 @@
class:text-white={date === $currentDate}
class:border-gb-700={date !== $currentDate}
class:bg-gb-900={date !== $currentDate}
class="items-center justify-around flex flex-col max-h-content w-full rounded border border-[0.5px] p-2 text-zinc-300 shadow transition duration-150 ease-out hover:bg-gb-800 hover:ease-in"
class="max-h-content flex w-full flex-col items-center justify-around rounded border border-[0.5px] p-2 text-zinc-300 shadow transition duration-150 ease-out hover:bg-gb-800 hover:ease-in"
>
{#if isToday}
<div class="py-2 text-lg leading-5">Today</div>

View File

@ -26,7 +26,6 @@ const config = {
}
}
},
plugins: []
};