merakiui/tailwind.config.js
Vinicius Kiatkoski Neves a10018b4ae
Apply transition (color) to category buttons (#21)
* 🔧 Add motion-reduce variant to transitionProperty

* 💄 Transition color from category buttons
2020-11-06 08:58:11 +02:00

21 lines
444 B
JavaScript

module.exports = {
purge: ["./src/**/*.vue"],
theme: {
extend: {
fontFamily: {
roboto: ["Roboto"],
},
spacing: {
80: "20rem",
96: "24rem",
112: "28rem",
128: "32rem",
},
},
},
variants: {
transitionProperty: ({ after }) => after(['motion-reduce']),
},
plugins: [],
};