tailwind config

close #2
This commit is contained in:
2020-12-22 19:52:45 +01:00
parent 90be4200ca
commit 7f340f2c7b
4 changed files with 20 additions and 0 deletions

13
tailwind.config.js Normal file
View File

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