mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-10 09:22:34 +00:00
Created a tailwind plugin
This commit is contained in:
parent
1478b368f3
commit
affd109498
11 changed files with 429 additions and 32 deletions
15
tailwindcss-primeui/utils/direction.js
Normal file
15
tailwindcss-primeui/utils/direction.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
module.exports = ({ addUtilities }) =>
|
||||
addUtilities({
|
||||
'.animate-normal': {
|
||||
'animation-direction': 'normal'
|
||||
},
|
||||
'.animate-reverse': {
|
||||
'animation-direction': 'reverse'
|
||||
},
|
||||
'.animate-alternate': {
|
||||
'animation-direction': 'alternate'
|
||||
},
|
||||
'.animate-alternate-reverse': {
|
||||
'animation-direction': 'alternate-reverse'
|
||||
}
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue