I'm often getting frustrated when writing notes on my 1920x1080 desktop. I love the app, but the tiny write-space feels like an unnecessary limitation. I know there is fullscreen mode, but I prefer having the note list on the left.
It would be nice to have a clickable option for people who prefer the narrow view, but this is how I've edited my notes.js:
/* center editor on large screens */
@media (min-width: 1200px) {
.note-editor[data-v-34551322] {
margin: 0 auto;
max-width: 75vw;
}
.note-container[data-v-34551322]{
padding-right:0;
}
}
@media (min-width: 1600px) {
.note-editor[data-v-34551322] {
margin: 0 auto;
}
.note-container[data-v-34551322] {
padding-right: 0;
transition-duration: var(--animation-quick);
transition-property: padding-right;
}
.sidebar-open .note-container[data-v-34551322] {
padding-right: 0px;
}
}
Obviously editing my notes.js file every time there's an update will be painful, so would you consider adding at least an option to enable the above?
I'm often getting frustrated when writing notes on my 1920x1080 desktop. I love the app, but the tiny write-space feels like an unnecessary limitation. I know there is fullscreen mode, but I prefer having the note list on the left.
It would be nice to have a clickable option for people who prefer the narrow view, but this is how I've edited my notes.js:
Obviously editing my notes.js file every time there's an update will be painful, so would you consider adding at least an option to enable the above?