Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
chore: updated tailwind config
Browse files Browse the repository at this point in the history
  • Loading branch information
hasan-deriv committed Dec 26, 2023
1 parent dc8489e commit 6e22d74
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,22 @@
module.exports = {
content: ['./src/**/*.{js,jsx,ts,tsx}'],
theme: {
extend: {},
extend: {
animation: {
'fade-in': 'fadeIn 0.3s ease',
'fade-out': 'fadeOut 0.3s ease',
},
keyframes: {
fadeIn: {
'0%': { opacity: '0' },
'100%': { opacity: '1' },
},
fadeOut: {
'0%': { opacity: '1' },
'100%': { opacity: '0' },
}
}
},
},
plugins: [],
presets: [require('@deriv/quill-design/quill-tailwind/tailwind.config')],
Expand Down

0 comments on commit 6e22d74

Please sign in to comment.