-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
42 lines (41 loc) · 906 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
const colors = require('tailwindcss/colors')
module.exports = {
future: {
// removeDeprecatedGapUtilities: true,
// purgeLayersByDefault: true,
},
purge: [
'trip_planner/templates/**/*.html',
'trip_planner/tailwind.py'
],
theme: {
extend: {
colors: {
teal: colors.teal,
gray: colors.trueGray,
indigo: colors.indigo,
orange: colors.orange
},
flex: {
'grow': '1 0 auto',
'grow-half-1': '1 0 50%',
'shrink-trip-app': '0 1 26rem'
},
minWidth: {
'wide': '40rem'
},
minHeight: {
'60vh': '60vh'
},
maxHeight: {
'body-sans-header': 'calc(100vh - 8rem)',
'three-quarters-screen': '75vh'
},
gridTemplateColumns: {
'auto-20rem': 'repeat(auto-fill, minmax(20rem, 1fr))'
}
},
},
variants: {},
plugins: [],
}