svelte-testing/tailwind.config.cjs

19 lines
399 B
JavaScript
Raw Normal View History

2022-07-01 21:30:29 +02:00
const defaultTheme = require('tailwindcss/defaultTheme')
2022-07-01 16:06:41 +02:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
2022-07-01 21:30:29 +02:00
extend: {
fontFamily: {
sans: ['Roboto Flex', ...defaultTheme.fontFamily.sans],
}
},
container: {
center: true,
},
2022-07-01 22:10:08 +02:00
minHeight: {
'1/2': '50%',
}
2022-07-01 16:06:41 +02:00
},
plugins: [],
2022-07-01 21:30:29 +02:00
}