@patreon/studio
Version:
Patreon Studio Design System
46 lines (37 loc) • 880 B
CSS
.shared {
font-family: type-token("dataBody.fontStack");
font-variant-numeric: lining-nums tabular-nums;
font-variation-settings: type-token("dataBody.fontWidth");
letter-spacing: type-token("dataBody.letterSpacing");
line-height: type-token("dataBody.lineHeight");
em {
font-style: italic;
}
s {
text-decoration: line-through;
}
}
.weightNormal {
font-weight: type-token("dataBody.fontWeights.normal");
strong,
b {
font-weight: type-token("dataBody.fontWeights.bold");
}
}
.weightBold {
font-weight: type-token("dataBody.fontWeights.bold");
}
@responsive {
.sizeXs {
font-size: type-token("dataBody.fontSizes.xs");
}
.sizeSm {
font-size: type-token("dataBody.fontSizes.sm");
}
.sizeMd {
font-size: type-token("dataBody.fontSizes.md");
}
.sizeLg {
font-size: type-token("dataBody.fontSizes.lg");
}
}