-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
68 lines (58 loc) · 1.1 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./index.html', './src/**/*.{vue,js,ts}'],
theme: {
screens: {
'xs': {
max: '380px'
},
'sm': {
max: '640px'
},
'lg': {
max: '768px'
},
'm': {
max: '1050px'
},
'xl': {
max: '1280px'
},
'3xl': {
min: '1750px'
}
},
extend: {
colors: {
'soft-black': '#1C1C1C'
},
boxShadow: {
'main': '0px 0px 7px 1px #00000030'
},
minWidth: {
'1': '100px',
'1.5': '150px',
'2': '200px',
'2.5': '250px',
'3': '300px',
'3.5': '350px',
'4': '400px',
'4.5': '450px',
'5': '500px',
'5.5': '550px',
'6': '600px',
'6.5': '650px',
'7': '700px',
'7.5': '750px',
'8': '800px',
},
transitionProperty: {
'border': 'border-width, border-color'
},
fontFamily: {
'source-sans-pro': 'Source Sans Pro'
}
},
},
plugins: [],
}