Skip to content

Commit

Permalink
fix: updating font definitions with Tailwind defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
Tbaile committed Dec 11, 2023
1 parent 57798fe commit 43b887e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tailwind.config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Config } from 'tailwindcss'
import defaultTheme from 'tailwindcss/defaultTheme'
import colors = require('tailwindcss/colors')

export default {
Expand All @@ -22,7 +23,7 @@ export default {
'indeterminate-progress-bar': 'indeterminateProgressBar 1s infinite linear'
},
fontFamily: {
sans: ['Poppins', 'sans-serif']
sans: ['Poppins', ...defaultTheme.fontFamily.sans]
}
}
},
Expand Down

0 comments on commit 43b887e

Please sign in to comment.