frontend/tailwind.config.js
2020-12-22 19:52:45 +01:00

14 lines
170 B
JavaScript

module.exports = {
purge: {
content: [ './src/**/*.svelte' ]
},
variants: {},
plugins: [],
theme: {
container: {
center: true,
padding: '1.5rem'
}
}
};