aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/style/fonts.ts
diff options
context:
space:
mode:
authorFrancesco Agosti <francesco.agosti93@gmail.com>2018-10-27 02:14:00 +0800
committerGitHub <noreply@github.com>2018-10-27 02:14:00 +0800
commit4c5b26db183f8f9163e043f5dd4bb0ce60e3aa7f (patch)
treedbfc6614e901c44d32775b1fe69bb957706c9cf0 /packages/instant/src/style/fonts.ts
parentd2bf23de71bc2bdfaca14bd7026daa59ca5ef386 (diff)
parent30809e646be02025d6f9e9ed0ff214d9ace681c8 (diff)
downloaddexon-sol-tools-4c5b26db183f8f9163e043f5dd4bb0ce60e3aa7f.tar
dexon-sol-tools-4c5b26db183f8f9163e043f5dd4bb0ce60e3aa7f.tar.gz
dexon-sol-tools-4c5b26db183f8f9163e043f5dd4bb0ce60e3aa7f.tar.bz2
dexon-sol-tools-4c5b26db183f8f9163e043f5dd4bb0ce60e3aa7f.tar.lz
dexon-sol-tools-4c5b26db183f8f9163e043f5dd4bb0ce60e3aa7f.tar.xz
dexon-sol-tools-4c5b26db183f8f9163e043f5dd4bb0ce60e3aa7f.tar.zst
dexon-sol-tools-4c5b26db183f8f9163e043f5dd4bb0ce60e3aa7f.zip
Merge pull request #1175 from 0xProject/feature/instant/input-fees-rounding
[instant] Create a ScalingInput component and use it in the amount input and upgrade to styled-components v4
Diffstat (limited to 'packages/instant/src/style/fonts.ts')
-rw-r--r--packages/instant/src/style/fonts.ts10
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/instant/src/style/fonts.ts b/packages/instant/src/style/fonts.ts
index 975a30a61..92450502d 100644
--- a/packages/instant/src/style/fonts.ts
+++ b/packages/instant/src/style/fonts.ts
@@ -1,10 +1,10 @@
-import { injectGlobal } from './theme';
-
export const fonts = {
include: () => {
// Inject the inter-ui font into the page
- return injectGlobal`
- @import url('https://rsms.me/inter/inter-ui.css');
- `;
+ 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);
},
};