Skip to content

Commit

Permalink
chore: change storybook font to Inter
Browse files Browse the repository at this point in the history
  • Loading branch information
gravitano committed Mar 8, 2023
1 parent 953983f commit f0dfd27
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .storybook/preview-head.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet" />

<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YRPJJ3YB86"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
function gtag() {dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-YRPJJ3YB86');
</script>

<script>
window.global = window;
</script>
</script>
7 changes: 7 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,12 @@ module.exports = {
'./packages/*/src/**/*.{vue,js,ts,jsx,tsx}',
'./stories/*/**/*.{vue,js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
},
},
presets: [require('./packages/tailwind-config/preset')],
};

0 comments on commit f0dfd27

Please sign in to comment.