forked from FoundKeyGang/FoundKey
client: center drive loading ui
This commit is contained in:
parent
7401a0b400
commit
aac6a93bae
1 changed files with 32 additions and 31 deletions
|
@ -38,7 +38,6 @@
|
|||
<MkPagination
|
||||
ref="paginationElem"
|
||||
:pagination="pagination"
|
||||
class="contents"
|
||||
>
|
||||
<template #empty>
|
||||
<p v-if="folder == null" class="empty"><strong>{{ i18n.ts.emptyDrive }}</strong></p>
|
||||
|
@ -46,6 +45,7 @@
|
|||
</template>
|
||||
|
||||
<template #default="{ items }">
|
||||
<div class="contents">
|
||||
<template v-for="(f, i) in items">
|
||||
<XFile
|
||||
v-if="'size' in f"
|
||||
|
@ -74,6 +74,7 @@
|
|||
@dragend="isDragSource = false"
|
||||
/>
|
||||
</template>
|
||||
</div>
|
||||
</template>
|
||||
</MkPagination>
|
||||
</div>
|
||||
|
@ -631,13 +632,13 @@ onBeforeUnmount(() => {
|
|||
height: calc(100% - 38px - 100px);
|
||||
}
|
||||
|
||||
> .contents {
|
||||
.contents {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(5, 1fr);
|
||||
gap: .5em;
|
||||
}
|
||||
|
||||
> .empty {
|
||||
.empty {
|
||||
padding: 16px;
|
||||
text-align: center;
|
||||
pointer-events: none;
|
||||
|
|
Loading…
Reference in a new issue