From 9952e2d955555ed8587162e60c6bfbdccb86cf76 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 25 Jun 2022 19:51:06 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=85=20Adds=20typography=20styles=20and?= =?UTF-8?q?=20assets?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/styles/typography.ts | 12 ++++++++++++ src/typings/file-types.d.ts | 1 + 2 files changed, 13 insertions(+) create mode 100644 src/styles/typography.ts create mode 100644 src/typings/file-types.d.ts diff --git a/src/styles/typography.ts b/src/styles/typography.ts new file mode 100644 index 0000000..b9997c2 --- /dev/null +++ b/src/styles/typography.ts @@ -0,0 +1,12 @@ +export const TextReset = ` + font-family: PTMono, Helvetica, Arial, sans-serif; + font-weight: 400; + font-style: normal; + font-stretch: normal; + line-height: normal; + letter-spacing: 0.38px; + margin: 0; + padding: 0; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +`; diff --git a/src/typings/file-types.d.ts b/src/typings/file-types.d.ts new file mode 100644 index 0000000..42e70b6 --- /dev/null +++ b/src/typings/file-types.d.ts @@ -0,0 +1 @@ +declare module "*.ttf"