codimd icon indicating copy to clipboard operation
codimd copied to clipboard

View width scaling limit too small

Open EloWork opened this issue 1 year ago • 2 comments
trafficstars

The view seems to be of fixed maximum width. Beyond that width the page is just filled with whitespace. (see picture) The limit seems unreasonably small for current displays. As far as I can tell, this is true for all browsers. This is especially annoying for tables, which keep their scrollbar even though there would be enough space to show the whole table. codimd

EloWork avatar Jun 21 '24 12:06 EloWork

there are many tickets for this, for both codimd and the competing hedgedoc project, but neither seems to be willing to change it.

Its especially frustrating if you have an ultra wide monitor.

psy0rz avatar Oct 16 '24 08:10 psy0rz

You can add the following custom style to the note to unset the maximum width limitation of the view:

<style>
    .markdown-body {
        max-width: unset;
    }
</style>

Yukaii avatar Mar 20 '25 06:03 Yukaii