mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +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/timingFunction.js
Normal file
15
tailwindcss-primeui/utils/timingFunction.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
module.exports = ({ addUtilities }) =>
|
||||
addUtilities({
|
||||
'.animate-ease-linear': {
|
||||
'animation-timing-function': 'linear'
|
||||
},
|
||||
'.animate-ease-in': {
|
||||
'animation-timing-function': 'cubic-bezier(0.4, 0, 1, 1)'
|
||||
},
|
||||
'.animate-ease-out': {
|
||||
'animation-timing-function': 'cubic-bezier(0, 0, 0.2, 1)'
|
||||
},
|
||||
'.animate-ease-in-out': {
|
||||
'animation-timing-function': 'cubic-bezier(0.4, 0, 0.2, 1)'
|
||||
}
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue