-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
46 lines (46 loc) · 1.01 KB
/
tailwind.config.cjs
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./index.html",
"./src/**/*.tsx",
"./src/components/**/*.tsx",
"./src/routes/**/*.tsx"
],
theme: {
extend: {
spacing: {
"35px": "35px",
"1.25": "4.25px",
"1.75": "7px",
"0.6": "2.5px",
"0.75": "3px",
"15": "60px",
"17": "68px",
"21": "88px",
"25": "104px",
"n64": "-256px",
"100": "400px"
},
minHeight: {
'1/2': '50%',
"675px": "675px"
},
gridTemplateColumns: {
// Simple 16 column grid
'16': 'repeat(16, minmax(0, 1fr))',
"smallCard": "max-content 75%",
// Complex site-specific column configuration
'footer': '200px minmax(900px, 1fr) 100px',
"banner": "570px 510px"
},
gridTemplateRows: {
"banner": "36px auto"
},
screens: {
"sm": "480px",
"1.5xl": "1455px"
}
},
},
plugins: [],
}