-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
41 lines (40 loc) · 1.09 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./app/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {
gridTemplateRows: {
'1': 'repeat(1, minmax(100px, 100px))',
'2': 'repeat(2, minmax(100px, 100px))',
'3': 'repeat(3, minmax(100px, 100px))',
'4': 'repeat(4, minmax(100px, 100px))',
'5': 'repeat(5, minmax(100px, 100px))',
'6': 'repeat(6, minmax(100px, 100px))',
'7': 'repeat(7, minmax(100px, 100px))',
'8': 'repeat(8, minmax(100px, 100px))',
'9': 'repeat(9, minmax(100px, 100px))',
'10': 'repeat(10, minmax(100px, 100px))',
'11': 'repeat(11, minmax(100px, 100px))',
'12': 'repeat(12, minmax(100px, 100px))',
'13': 'repeat(13, minmax(100px, 100px))',
},
gridRowStart: {
'8': '8',
'9': '9',
'10': '10',
'11': '11',
'12': '12',
'13': '13',
},
gridRowEnd: {
'8': '8',
'9': '9',
'10': '10',
'11': '11',
'12': '12',
'13': '13',
},
}
},
plugins: [],
}