mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-24 05:29:51 +03:00
pnpm lint
This commit is contained in:
parent
bd96bb7f7d
commit
46e6af7fb2
4
src/app.d.ts
vendored
4
src/app.d.ts
vendored
@ -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;
|
||||
}
|
||||
|
@ -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 {
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user