Update MkUploadDialog.vue
This commit is contained in:
parent
988ebb8aaa
commit
a2e1b8b41b
|
@ -39,9 +39,9 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<MkSystemIcon v-if="ctx.uploading" type="waiting" style="width: 40px;"/>
|
||||
<MkSystemIcon v-else-if="ctx.uploaded" type="success" style="width: 40px;"/>
|
||||
<MkSystemIcon v-else-if="ctx.uploadFailed" type="error" style="width: 40px;"/>
|
||||
<MkSystemIcon v-if="ctx.uploading" :class="$style.itemIcon" type="waiting"/>
|
||||
<MkSystemIcon v-else-if="ctx.uploaded" :class="$style.itemIcon" type="success"/>
|
||||
<MkSystemIcon v-else-if="ctx.uploadFailed" :class="$style.itemIcon" type="error"/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -359,4 +359,8 @@ onMounted(() => {
|
|||
display: flex;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.itemIcon {
|
||||
width: 35px;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue