Skip to content

Commit fa921ec

Browse files
committed
fix: make list rendering work on mobile
Signed-off-by: Grigory Vodyanov <scratchx@gmx.com>
1 parent afdf3a1 commit fa921ec

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

src/components/MailboxThread.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -667,6 +667,7 @@ export default {
667667
flex: 1 1 auto;
668668
overflow-y: auto;
669669
min-height: 0;
670+
contain: none !important;
670671
}
671672
672673
.information-icon {

src/components/Outbox.vue

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<OutboxMessageContent />
1212
<!-- List -->
1313
<template #list>
14-
<AppContentList>
14+
<AppContentList class="outbox-list">
1515
<Error
1616
v-if="error"
1717
:error="t('mail', 'Could not open outbox')"
@@ -119,6 +119,10 @@ export default {
119119
</script>
120120

121121
<style lang="scss" scoped>
122+
.outbox-list {
123+
contain: none !important;
124+
}
125+
122126
:deep(.button-vue--vue-secondary) {
123127
box-shadow: none;
124128
}

0 commit comments

Comments
 (0)