-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathtailwind.config.js
More file actions
31 lines (29 loc) · 775 Bytes
/
tailwind.config.js
File metadata and controls
31 lines (29 loc) · 775 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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
screens: {
sm: '350px',
// => @media (min-width: 576px) { ... }
md: '1000px',
// => @media (min-width: 960px) { ... }
lg: '1200px',
// => @media (min-width: 1440px) { ... }
},
extend: {
animation: {
'spin-slow': 'spin 3s linear infinite',
'bounce-slow': 'bounce 2s infinite',
'pulse-slow':
'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',
},
backdropBlur: {
'2xl': '40px',
},
borderWidth: {
3: '3px',
},
},
},
plugins: [],
};