-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
53 lines (53 loc) · 1.13 KB
/
tailwind.config.js
File metadata and controls
53 lines (53 loc) · 1.13 KB
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
// https://tailwindcss.com/docs/configuration
module.exports = {
content: ['./**/*.scss', './**/*.twig', './**/*.php'],
theme: {
colors: {
},
screens: {
sm: '641px',
md: '769px',
lg: '1025px',
xl: '1281px',
'2xl': '1537px'
},
extend: {
borderRadius: {
sm: '10px',
md: '24px',
lg: '48px',
xl: '90px'
},
boxShadow: {
sm: '0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.05)',
lg: '0px 8px 12px -2px rgba(0, 0, 0, 0.1), 0px 8px 12px -2px rgba(0, 0, 0, 0.05)'
},
colors: {
},
borderWidth: {
DEFAULT: '1px',
0: '0',
2: '2px',
3: '3px',
4: '4px'
},
fontFamily: {
oswald: ['Oswald Bold', 'sans-serif'],
sourcesans: ['Source Sans', 'sans-serif']
},
spacing: {
sm: '10px',
md: '24px',
lg: '48px',
xl: '90px'
},
translate: {
sm: '10px',
md: '24px',
lg: '48px',
xl: '90px'
}
}
},
plugins: [require('@tailwindcss/typography')]
}