-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
38 lines (34 loc) · 919 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
38 lines (34 loc) · 919 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
35
36
37
38
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
spacing: {
'15px': '15px',
'75px': '75px',
},
textColor: {
primary: '#1f1f1f',
},
screens: {
'2xl-max': { max: '1537px' },
// => @media (max-width: 1535px) { ... }
'xl-max': { max: '1279px' },
// => @media (max-width: 1279px) { ... }
'lg-max': { max: '1023px' },
// => @media (max-width: 1023px) { ... }
'md-max': { max: '767px' },
// => @media (max-width: 767px) { ... }
'sm-max': { max: '639px' },
// => @media (max-width: 639px) { ... }
},
backgroundImage: (theme) => ({
'hero-wave': "url('../assets/images/components/wave.svg')",
}),
},
},
variants: {
extend: {},
},
plugins: [],
};