talks/taking-flight-with-tailwind-css/code/plugins-plugin-source.txt
2021-02-11 17:56:17 +00:00

14 lines
194 B
Plaintext

// index.js
module.exports = variants => ({ addUtilities }) => {
addUtilities(
{
'.list-reset': {
listStyle: 'none',
padding: 0,
},
},
variants,
)
}