You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that when I switch to branch level-6 the font no longer works. I checked the differences and you seem to have changed the format from "truetype" to "tff" which is not a valid format. "truetype" is correct. Also, the ending semicolon is changed to a comma which breaks it. So after level 5, line 50 of style.css becomes
I noticed that when I switch to branch level-6 the font no longer works. I checked the differences and you seem to have changed the format from "truetype" to "tff" which is not a valid format. "truetype" is correct. Also, the ending semicolon is changed to a comma which breaks it. So after level 5, line 50 of style.css becomes
src: url("assets/fonts/Rubik-Regular.ttf") format("ttf"),
when it needs to stay
src: url("assets/fonts/Rubik-Regular.ttf") format("truetype");
I submitted pull requests fixing the affected branches.
The text was updated successfully, but these errors were encountered: