Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions src/components/Loading.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@
<template #icon>
<IconLoading />
</template>
<transition name="fade">
<em v-if="slowHint && slow">{{ slowHint }}</em>
</transition>
<template #description>
<transition name="fade">
<em v-if="slowHint && slow">{{ slowHint }}</em>
</transition>
</template>
</EmptyContent>
<IconLoading v-else class="container" />
</div>
Expand Down Expand Up @@ -85,6 +87,6 @@ export default {
flex-direction: column;
flex: 1 auto;
align-items: center;
height: 100vh;
height: 100%;
}
</style>
7 changes: 6 additions & 1 deletion src/components/Mailbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
-->

<template>
<div :class="{ 'empty-content': (!hasMessages && !loadingEnvelopes) || error }">
<div class="mailbox"
:class="{ 'empty-content': (!hasMessages && !loadingEnvelopes) || error }">
<Error
v-if="error"
:error="t('mail', 'Could not open folder')"
Expand Down Expand Up @@ -625,6 +626,10 @@ export default {
</script>

<style lang="scss" scoped>
.mailbox {
height: 100%;
}

// Fix vertical space between sections in priority inbox
.nameimportant {
:deep(#load-more-mail-messages) {
Expand Down
Loading