Skip to content

Commit

Permalink
fixup! feat: increaze the min and max width for horizontal view
Browse files Browse the repository at this point in the history
Signed-off-by: greta <gretadoci@gmail.com>
  • Loading branch information
GretaD committed Jun 20, 2024
1 parent 007527d commit 87d47c2
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/components/MailboxThread.vue
Original file line number Diff line number Diff line change
Expand Up @@ -153,16 +153,10 @@ export default {
return this.$store.getters.getPreference('layout-mode', 'vertical-split')
},
horizontalListMinWidth() {
return this.layoutMode === 'horizontal-split' ? 60 : this.defaultListMinWidth
return this.layoutMode === 'horizontal-split' ? 40 : 30
},
horizontalListMaxWidth() {
return this.layoutMode === 'horizontal-split' ? 70 : this.defaultListMaxWidth
},
defaultListMinWidth() {
return 30
},
defaultListMaxWidth() {
return 40
return this.layoutMode === 'horizontal-split' ? 60 : 50
},
unifiedAccount() {
return this.$store.getters.getAccount(UNIFIED_ACCOUNT_ID)
Expand Down

0 comments on commit 87d47c2

Please sign in to comment.