Created a tailwind plugin

This commit is contained in:
Cagatay Civici 2024-05-20 00:46:35 +03:00
parent 1478b368f3
commit affd109498
11 changed files with 429 additions and 32 deletions

View file

@ -0,0 +1,9 @@
module.exports = ({ addUtilities }) =>
addUtilities({
'.backface-visible': {
'backface-visibility': 'visible'
},
'.backface-hidden': {
'backface-visibility': 'hidden'
}
});