Font Bigger for Coding Style

Hello, is there a way to make the font bigger inside a coding style with out making the font bigger? I need to make the font bigger to be able to see the code but I don’t want to make the normal font bigger. I like it the size that it is one right now.
Thank you!

image

Hi,
to achieve this, you can override the style of the code component in the rendered markdown. To do this, you need to create a styles.less file in the inkdrop data directory. (Style Tweaks)

The font size can be manipulated as described below:

.mde-preview pre > code {
    font-size: 120%;
} 
1 Like

Thank you so much! Yes I was able to edit it.