docspell/modules/webapp/tailwind.config.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
606 B
JavaScript
Raw Normal View History

2021-01-29 19:44:36 +00:00
// tailwind.config.js
const colors = require('tailwindcss/colors')
module.exports = {
darkMode: 'class', // or 'media' or 'class'
content: [ "./src/main/elm/**/*.elm",
"./src/main/styles/keep.txt",
"../restserver/src/main/templates/*.html"
],
theme: {
extend: {
screens: {
'3xl': '1792px',
'4xl': '2048px',
'5xl': '2560px',
'6xl': '3072px',
'7xl': '3584px'
}
}
},
2021-01-29 19:44:36 +00:00
plugins: [
require('@tailwindcss/forms')
2021-01-29 19:44:36 +00:00
]
}