JonasDoebertin / kirby-visual-markdown

Visual Markdown Editor for Kirby CMS 2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Change font-size

S1SYPHOS opened this issue · comments

Hey there,
I just found out about this plugin, exactly what my clients needed, thank you so much!
One tiny detail I found annoying though is the font-size of normal-sized text, it's just so tiny! Hotfix for me was this:

.cm-s-visualmarkdown {
    // font: 1em/1.75 monospace changing into
    font: 1rem/1.75 monospace;
}

What do you think?

There is no need for a change on the plugins side imo. You could do that with a custom panel css file to fit your clients taste:
https://getkirby.com/docs/developer-guide/panel/css

Thought about that option, too. Maybe it helps to add a little note to the documentation on how to do that.