We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c576e5b commit f88feb2Copy full SHA for f88feb2
packages/ui/src/foundations/typography.ts
@@ -9,10 +9,10 @@ const fontWeights = Object.freeze({
9
10
const lineHeights = Object.freeze({
11
normal: 'normal',
12
- extraSmall: '1.33333',
13
- small: '1.38462',
14
- medium: '1.41176',
15
- large: '1.45455',
+ extraSmall: 'calc(16 / 12)', // = 1.33333
+ small: 'calc(18 / 13)', // = 1.38462
+ medium: 'calc(24 / 17)', // = 1.41176
+ large: 'calc(16 / 11)', // = 1.45455
16
} as const);
17
18
const letterSpacings = Object.freeze({
0 commit comments