This commit is contained in:
Oliver Davies 2019-04-11 13:14:27 +01:00
commit 895b92a157
4 changed files with 76 additions and 0 deletions

9
index.js Normal file
View file

@ -0,0 +1,9 @@
module.exports = (variants) => {
return function ({ addUtilities }) {
addUtilities({
'.test': {
display: 'block'
},
}, variants)
}
}