diff options
author | Paul Frazee <pfrazee@gmail.com> | 2022-12-30 12:19:45 -0600 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2022-12-30 12:19:45 -0600 |
commit | 55ca7dcce1acba1440f22c20d1e1b4611aebd73d (patch) | |
tree | c34dc29e6ae3eb31865a76f8d662c1e8f8ffb101 /src/view/lib | |
parent | 55500e2f66d5f30f1aedf63d4355a6b7568d4552 (diff) | |
download | voidsky-55ca7dcce1acba1440f22c20d1e1b4611aebd73d.tar.zst |
Update threads to use design system
Diffstat (limited to 'src/view/lib')
-rw-r--r-- | src/view/lib/styles.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/lib/styles.ts b/src/view/lib/styles.ts index 8933a8d8e..299c0196a 100644 --- a/src/view/lib/styles.ts +++ b/src/view/lib/styles.ts @@ -199,6 +199,6 @@ export function lh( height: number, ): TextStyle { return { - lineHeight: (theme.typography[type].lineHeight || 16) * height, + lineHeight: (theme.typography[type].fontSize || 16) * height, } } |