aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/style/fonts.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/instant/src/style/fonts.ts')
-rw-r--r--packages/instant/src/style/fonts.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/packages/instant/src/style/fonts.ts b/packages/instant/src/style/fonts.ts
deleted file mode 100644
index 92450502d..000000000
--- a/packages/instant/src/style/fonts.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-export const fonts = {
- include: () => {
- // Inject the inter-ui font into the page
- const appendTo = document.head || document.getElementsByTagName('head')[0] || document.body;
- const style = document.createElement('style');
- style.type = 'text/css';
- style.appendChild(document.createTextNode(`@import url('https://rsms.me/inter/inter-ui.css')`));
- appendTo.appendChild(style);
- },
-};