auto-book has variable number of columns based on the right pane width

This commit is contained in:
zadam 2019-10-14 12:06:10 +02:00
parent 1923bf7dda
commit fafab95a07
2 changed files with 18 additions and 2 deletions

View File

@ -237,7 +237,22 @@ class NoteDetailBook {
}
getDefaultZoomLevel() {
return this.isAutoBook() ? 3 : 1;
if (this.isAutoBook()) {
const w = this.$component.width();
if (w <= 600) {
return 1;
} else if (w <= 900) {
return 2;
} else if (w <= 1300) {
return 3;
} else {
return 4;
}
}
else {
return 1;
}
}
getRenderingType(childNote) {

View File

@ -809,7 +809,8 @@ a.external:not(.no-arrow):after, a[href^="http://"]:not(.no-arrow):after, a[href
border-radius: 10px;
background-color: var(--accented-background-color);
padding: 15px;
margin: 10px;
padding-bottom: 5px;
margin: 5px;
margin-left: 0;
overflow: hidden;
display: flex;