mirror of
https://github.com/kmc7468/arkvault.git
synced 2025-12-15 22:38:47 +00:00
불필요한 CSS 속성 제거
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
</script>
|
||||
|
||||
{#if $status && isFileDownloading($status.status)}
|
||||
<div class="flex w-full flex-col rounded-xl bg-gray-100 p-3">
|
||||
<div class="w-full rounded-xl bg-gray-100 p-3">
|
||||
<p class="font-medium">
|
||||
{#if $status.status === "download-pending"}
|
||||
다운로드를 기다리는 중
|
||||
|
||||
@@ -41,8 +41,8 @@
|
||||
<IconError class="text-red-500" />
|
||||
{/if}
|
||||
</div>
|
||||
<div class="flex flex-grow flex-col overflow-hidden">
|
||||
<p title={$fileInfo.name} class="truncate font-medium text-gray-800">
|
||||
<div class="flex-grow overflow-hidden">
|
||||
<p title={$fileInfo.name} class="truncate font-medium">
|
||||
{$fileInfo.name}
|
||||
</p>
|
||||
<p class="text-xs text-gray-800">
|
||||
|
||||
@@ -33,8 +33,8 @@
|
||||
<IconError class="text-red-500" />
|
||||
{/if}
|
||||
</div>
|
||||
<div class="flex flex-grow flex-col overflow-hidden">
|
||||
<p title={$status.name} class="truncate font-medium text-gray-800">
|
||||
<div class="flex-grow overflow-hidden">
|
||||
<p title={$status.name} class="truncate font-medium">
|
||||
{$status.name}
|
||||
</p>
|
||||
<p class="text-xs text-gray-800">
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
<IconScanDelete class="text-red-400" />
|
||||
</div>
|
||||
{/if}
|
||||
<div class="flex flex-grow flex-col overflow-hidden">
|
||||
<div class="flex-grow overflow-hidden">
|
||||
{#if $info}
|
||||
<p title={$info.name} class="truncate font-medium">{$info.name}</p>
|
||||
{:else}
|
||||
|
||||
@@ -117,7 +117,7 @@
|
||||
{#if file.type === "file"}
|
||||
<File info={file.info} onclick={onEntryClick} onOpenMenuClick={onEntryMenuClick} />
|
||||
{:else}
|
||||
<UploadingFile info={file.info} />
|
||||
<UploadingFile status={file.info} />
|
||||
{/if}
|
||||
{/each}
|
||||
</div>
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
<div class="flex-shrink-0 text-lg">
|
||||
<IconDraft class="text-blue-400" />
|
||||
</div>
|
||||
<div class="flex flex-grow flex-col overflow-hidden">
|
||||
<div class="flex-grow overflow-hidden">
|
||||
<p title={$info.name} class="truncate font-medium">
|
||||
{$info.name}
|
||||
</p>
|
||||
|
||||
Reference in New Issue
Block a user