google / fonts

Font files available from Google Fonts, and a public issue tracker for all things Google Fonts
https://fonts.google.com
17.91k stars 2.6k forks source link

Mulish - weird result when using -webkit-text-stroke #6516

Closed lcnogueira closed 1 year ago

lcnogueira commented 1 year ago

Describe the bug I'm not sure if this is exactly a bug or if I should do something different, but -webkit-text-stroke produces a weird result on Mulish font.

To Reproduce

  1. Add an html element that uses the Mulish font:

    <h1 class="style-two">Some content <span>join our team</span></h1>
  2. Apply the webkit-text-stroke:

    h1 {
    color: #fff;
    text-shadow: -4px 6px #000;
    font-size: 30px;
    font-style: italic;
    
    & span  {
     text-shadow: -4px 6px #000;
     font-size: 60px;
     display: block;
    letter-spacing: 0.60px;
    -webkit-text-stroke: 3px #ace200;
    color: #222;
    }
    }

Screenshots You can see below how it renders (Mulish) x how it should render (Rubik):

Screenshot 2023-07-06 at 21 42 38

Additional context Add any other context about the problem here (OS version, browser, printer…) This issue is present on Chrome, Safari and Firefox.

RosaWagner commented 1 year ago

You'll find answer about that issue in #4212.

lcnogueira commented 1 year ago

Thank you @RosaWagner !