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
Using figma with your fonts, you can set an alternative set style, where the letter "Л" (Russian Cyrillic) is different, for example in spoilers No. 1 and No. 2.
When using web fonts, I need this letter to be like in spoiler №1, but it is like in spoiler №2.
How can I change the style of these letters in a web font by analogy with the font from figma, do I need a style like in spoiler # 1?
Spoiler №1 - what do I need, figma (screenshot)Spoiler №2 - what I get, figma (screenshot)Spoiler №3 - web fonts (screenshot)
The text was updated successfully, but these errors were encountered:
Maybe I am a little bit late to the problem, but the issue was because font detects the usage of Russian language (via "lang" attribute of <html> tag, persumably, however I am not sure) in the website and implicitly sets "ss01" to be variant from Spoiler №2 no matter how you set "ss01" in CSS.
To override that, the line that is needed is font-feature-settings: "locl" 0; which turns off locale detection.
As variant from Spoiler №1 is the default one, "ss01" does not need be set, and just turning off locale detection will work.
Source: went to website shown on the Spoilers, and added the abovementioned line in CSS via webtools.
Using figma with your fonts, you can set an alternative set style, where the letter "Л" (Russian Cyrillic) is different, for example in spoilers No. 1 and No. 2.
When using web fonts, I need this letter to be like in spoiler №1, but it is like in spoiler №2.
How can I change the style of these letters in a web font by analogy with the font from figma, do I need a style like in spoiler # 1?
Spoiler №1 - what do I need, figma (screenshot)
Spoiler №2 - what I get, figma (screenshot)
Spoiler №3 - web fonts (screenshot)
The text was updated successfully, but these errors were encountered: