Using monospace property in production

Hello team,

For one of our text styles, we’ve enabled the monospace style from the text properties section in Figma (see attached screenshot). The font doesn’t seem to have a weight that says “monospace”, so these monospace variants are not in a separate file.

Our dev team isn’t sure how to enable this property in production. Does anyone have experience enabling this?

Thanks a lot for your help!

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.

This can be done with CSS.

Example:

.class {
  font-variant-numeric: tabular-nums;
  -moz-font-feature-settings: "tnum";
  -webkit-font-feature-settings: "tnum";
  font-feature-settings: "tnum";
}