n0mbers/tailwind.config.js

11 lines
227 B
JavaScript
Raw Normal View History

2022-02-07 22:14:31 +01:00
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
theme: {
extend: {},
fontFamily: {
2022-02-09 21:27:26 +01:00
sans: ['Manrope', 'ui-sans-serif', 'system-ui', 'apple-system'],
},
2022-02-07 22:14:31 +01:00
},
2022-02-09 21:27:26 +01:00
plugins: [],
2022-02-07 22:14:31 +01:00
}