hoiheart / vue-diff

VueJS diff viewer plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How do I change font size?

vedmant opened this issue · comments

How do I change font size, changing font size of parent tag doesn't have an effect, I don't see any option to change font size. Changing font size of .vue-diff-viewer also doesn't work properly as line heights stay the same.

You can try:

.vue-diff-viewer {
    pre {
        code {
            span {
                font-size: 13px;
            }
        }
    }
}