WHAT DO YOU RECOMMEND
Right now Anytype forces through the layout width when you resize the window and make it smaller, e.g. on a side by side setup with another app. If the window gets narrow, anytype starts horizontally scrolling content of the page while wasting a lot of space with blanks on the sides. This doesn’t make any sense from a UX perspective. Only workaround is to change the layout width, but that has to be done to every page, and once I increase the window size again, I want my nice layout width back, and not have to reset multiple pages.
HOW COULD IT BE DONE
It would be great if anytype uses the layout width only under the condition that the window is wide enough, and if you shrink the window, it should get rid of the blank spaces BEFORE it forces horizontal content scrolling.
REAL WORLD USE CASES
Using side by side window arrangements with a browser for example.
RECOMMENDED ALTERNATIVES
Alternatively it would be great to have a global layout width setting that can be switched on and off that overrides page settings if switched on and reverts back to page setting if switched off.
EDIT: Also there is a custom.css workaround:
@media (max-width: 960px) {
.editorWrapper {
width: calc(100vw - 64px) !important;
}
.isPopup .editorWrapper {
width: calc(100vw - 128px) !important;
}
}
ADDITIONAL CONTEXT
Love you guys.