-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtailwind.config.js
89 lines (88 loc) · 1.85 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
** TailwindCSS Configuration File
**
** Docs: https://tailwindcss.com/docs/configuration
** Default: https://github.com/tailwindcss/tailwindcss/blob/master/stubs/defaultConfig.stub.js
*/
module.exports = {
theme: {
screens: {
'xs': '320px',
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'xxlmin': '1351px',
'xxlmax': { max: '1350px' }
},
fontFamily: {
display: ['Quicksand', 'sans-serif'],
body: ['Quicksand', 'sans-serif'],
'ginger' : ['ginger-light', 'sans-serif'],
'ginger-n' : ['ginger-normal', 'sans-serif'],
'ginger-b' : ['ginger-bold', 'sans-serif'],
'open': ['Open Sans']
},
borderWidth: {
default: '1px',
'0': '0',
'2': '2px',
'4': '4px'
},
borderRadius: {
'full' : '1rem',
'super': '1.25rem',
},
extend: {
colors: {
cyan: '#9cdbff',
grey: '#eeeeee'
},
spacing: {
'96': '24rem',
'128': '32rem',
'100%': '100%',
'50%': '49%',
'33%': '32.9%'
},
height: {
'84': '22rem'
},
width: {
'3/2': '150%',
'4/2': '200%',
'1/2-screen': '50vw'
},
margin: {
'-fullh': '-100vh'
}
},
inset: {
'0': 0,
'16': '16px',
'32': '32px',
'64': '64px',
'2rem': '2rem',
'3rem': '3rem'
}
},
purge: {
// Learn more on https://tailwindcss.com/docs/controlling-file-size/#removing-unused-css
enabled: process.env.NODE_ENV === 'production',
content: [
'components/**/*.vue',
'layouts/**/*.vue',
'pages/**/*.vue',
'plugins/**/*.js',
'nuxt.config.js'
]
},
future :
{
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
variants: {},
plugins: [
]
}