pnpm lint

This commit is contained in:
Nikita Galaiko 2023-03-28 14:01:43 +02:00
parent bd96bb7f7d
commit 46e6af7fb2
3 changed files with 7 additions and 9 deletions

4
src/app.d.ts vendored
View File

@ -1,8 +1,8 @@
// See https://kit.svelte.dev/docs/types#app
// for information about these interfaces
// and what to do when importing types
declare namespace App { }
declare namespace App {}
interface HTMLElement {
scrollIntoViewIfNeeded: (centerIfNeeded?: boolean) => void;
scrollIntoViewIfNeeded: (centerIfNeeded?: boolean) => void;
}

View File

@ -9,7 +9,6 @@
-webkit-perspective: 1000;
}
/* SCROLL BAR STYLING */
/* width */
@ -32,7 +31,7 @@
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #6E6E78;
background: #6e6e78;
}
.scrollbar-hidden::-webkit-scrollbar {
-webkit-appearance: none;
@ -45,7 +44,6 @@
height: 0;
}
/* COMMAND PALETTE */
.result-section-header {

View File

@ -285,11 +285,11 @@
<ul class="pl-4">
{#each $filesStatus as activity}
<li class="list-disc">
<div class="w-full flex gap-2 ">
<div class="flex w-full gap-2 ">
{activity.status.slice(0, 1)}
<div
class="truncate"
use:collapsable={{ value: activity.path, separator: '/' }}
<div
class="truncate"
use:collapsable={{ value: activity.path, separator: '/' }}
/>
</div>
</li>