usememos / memos

An open-source, lightweight note-taking solution. The pain-less way to create your meaningful notes. Your Notes, Your Way.
https://usememos.com
MIT License
34.06k stars 2.46k forks source link

Notes and edit window stuck on small sizes #3824

Closed mynamewastaken closed 2 months ago

mynamewastaken commented 2 months ago

Describe the bug

Both the notes and edit notes windows are quite small at my resolution (3840x2160) on Linux Firefox and don't seem to grow past a certain point when resizing the window.

Steps to reproduce

Open a notes install with a high resolution and see that the note window appears to float in the middle taking up maybe 30-40% of the width, with the edit note popup being smaller than that.

The version of Memos you're using.

app: 0.19.0, helm chart: 0.35.0

Screenshots or additional context

No response

mynamewastaken commented 2 months ago

I see now that the version I'm running is a bit older; I willl try updating to the latest available and see if that helps. If so I will close the issue.

mynamewastaken commented 2 months ago

Somewhat improved with 0.22.4 as the edit window is now the same size as the original note - but it would be nice to be able to expand the whole thing. Or if you have pointers for a CSS hack or something that's fine too.

RoccoSmit commented 2 months ago

Try setting the custom css (settings -> system -> additional style)

section.w-full.max-w-5xl.min-h-full.flex.flex-col.justify-start.items-center.pb-8 {
    max-width: 100%;
}

You can set the percentage as per your need (default = 64rem). Note: this will change the width of the center column on all pages

mynamewastaken commented 2 months ago

This worked great - thank you!