presentations/Taking Flight with Tailwind CSS/code/plugins-plugin-source.txt

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

14 lines
194 B
Text
Raw Normal View History

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