forked from binary-com/deriv-com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
32 lines (32 loc) · 951 Bytes
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{js,jsx,ts,tsx}',
"./node_modules/@deriv-com/blocks/lib/index.js",
"./node_modules/@deriv-com/components/lib/index.js",
"./node_modules/@deriv/quill-design/dist/index.js",
],
theme: {
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' },
}
}
},
maxHeight: {
"none": "none",
},
},
plugins: [],
presets: [require('@deriv/quill-design/quill-tailwind/tailwind.config')],
}