-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtailwind.config.js
More file actions
34 lines (34 loc) · 848 Bytes
/
tailwind.config.js
File metadata and controls
34 lines (34 loc) · 848 Bytes
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
33
34
/** @type {import('tailwindcss').Config} */
module.exports = {
prefix: 'tw-',
content: [
'./app/helpers/**/*.rb',
'./app/components/**/*.{rb,erb}',
'./app/decorators/**/*.rb',
'./app/javascript/**/*.js',
'./app/javascript/**/*.js',
'./app/views/**/*',
'./app/views/**/**',
'./app/views/**/**/*',
'./app/javascript/react_components/**/*.{jsx,tsx}',
],
theme: {
extend: {
keyframes: {
wiggle: {
'0%, 100%': { transform: 'rotate(-3deg)' },
'50%': { transform: 'rotate(3deg)' },
},
},
animation: {
wiggle: 'wiggle 1s ease-in-out infinite',
},
},
},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
require('@tailwindcss/line-clamp'),
// require('@tailwindcss/aspect-ratio'),
],
};