league-spartan icon indicating copy to clipboard operation
league-spartan copied to clipboard

Font size is too small compared to other sans-serif fonts at 13px

Open CleverCoder opened this issue 1 year ago • 0 comments

I'm seeing an issue that makes it hard to use this font as a replacement for other sans-serif fonts. At 13px, it appears to be occupying around 11px, with the box taking up 12px.

Example code:

        <div style="font-family: Spartan" class="font-div">League Spartan 13px</div>
        <div style="font-family: Helvetica" class="font-div">Helvetica 13px</div>
        <div style="font-family: Arial" class="font-div">Arial 13px</div>
@font-face {
    font-family: "Spartan";
    src: url("@/assets/fonts/LeagueSpartan-VF.woff2") format('woff2-variations');
    font-weight: 200 900;
}

.font-div {
    font-size: 13px;
    line-height: normal;
}

Result on my MacBook in Chrome:

image

CleverCoder avatar Jan 31 '24 22:01 CleverCoder