Add TailwindCSS

Following https://tailwindcss.com/docs/installation
This commit is contained in:
Tobias 2021-01-17 21:01:44 +01:00
parent 946572a31c
commit f07e595830
5 changed files with 1255 additions and 3 deletions

14
tailwind.config.js Normal file
View file

@ -0,0 +1,14 @@
module.exports = {
purge: [
// './**/*.html',
// './**/*.js',
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {},
},
variants: {
extend: {},
},
plugins: [],
}