installed tailwind and removed old css/js

This commit is contained in:
Jfriedli 2021-03-18 09:25:11 +01:00
parent 9a0a693c54
commit 170d77b3ec
14 changed files with 3021 additions and 1103 deletions

18
tailwind.config.js Normal file
View file

@ -0,0 +1,18 @@
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
future: {
// removeDeprecatedGapUtilities: true,
// purgeLayersByDefault: true,
},
purge: [],
theme: {
extend: {
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
},
},
},
variants: {},
plugins: [],
}