go-ssb-room/web/styles/tailwind.config.js

19 lines
295 B
JavaScript

module.exports = {
purge: ['../templates/**/*.tmpl'],
darkMode: false,
theme: {
extend: {
minHeight: (theme) => ({
...theme('spacing'),
}),
}
},
variants: {
extend: {
backgroundColor: ['odd'],
zIndex: ['hover'],
}
},
plugins: [],
};