-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
42 lines (42 loc) · 1016 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
33
34
35
36
37
38
39
40
41
42
module.exports = {
purge: ['./src/**/*.{js,jsx,ts,tsx}'],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
width: {
container: '90rem',
box: '59.625rem',
photo: '205px',
'offer-box': '200px',
input: '17rem'
},
colors: {
blue: '#3071E6',
yellow: '#FFC300'
},
height: {
logo: '50px',
photo: '205px',
'offer-box': '200px'
},
margin: {
logo: '162px',
'about-text': '205px',
},
fontSize: {
h2: '10rem',
h3: '5rem'
},
zIndex: {
'-1': '-1'
},
transitionProperty: {
'height': 'height',
}
},
},
variants: {
extend: {},
},
plugins: [],
}