-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.cjs
69 lines (69 loc) · 2.2 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{js,ts,jsx,tsx}'],
safelist: [
'grid-cols-[repeat(0,_13px)]',
'grid-cols-[repeat(1,_13px)]',
'grid-cols-[repeat(2,_13px)]',
'grid-cols-[repeat(3,_13px)]',
'grid-cols-[repeat(4,_13px)]',
'grid-cols-[repeat(5,_13px)]',
'grid-cols-[repeat(6,_13px)]',
'grid-cols-[repeat(7,_13px)]',
'grid-cols-[repeat(8,_13px)]',
'grid-cols-[repeat(9,_13px)]',
'grid-cols-[repeat(10,_13px)]',
'grid-cols-[repeat(11,_13px)]',
'grid-cols-[repeat(12,_13px)]',
'grid-cols-[repeat(13,_13px)]',
'grid-cols-[repeat(14,_13px)]',
'grid-cols-[repeat(15,_13px)]',
'grid-cols-[repeat(16,_13px)]',
'grid-cols-[repeat(0,_36px)]',
'grid-cols-[repeat(1,_36px)]',
'grid-cols-[repeat(2,_36px)]',
'grid-cols-[repeat(3,_36px)]',
'grid-cols-[repeat(4,_36px)]',
'grid-cols-[repeat(5,_36px)]',
'grid-cols-[repeat(6,_36px)]',
'grid-cols-[repeat(7,_36px)]',
'grid-cols-[repeat(8,_36px)]',
'grid-cols-[repeat(9,_36px)]',
'grid-cols-[repeat(10,_36px)]',
'grid-cols-[repeat(11,_36px)]',
'grid-cols-[repeat(12,_36px)]',
'grid-cols-[repeat(13,_36px)]',
'grid-cols-[repeat(14,_36px)]',
'grid-cols-[repeat(15,_36px)]',
'grid-cols-[repeat(16,_36px)]',
'grid-cols-[repeat(0,_61px)]',
'grid-cols-[repeat(1,_61px)]',
'grid-cols-[repeat(2,_61px)]',
'grid-cols-[repeat(3,_61px)]',
'grid-cols-[repeat(4,_61px)]',
'grid-cols-[repeat(5,_61px)]',
'grid-cols-[repeat(6,_61px)]',
'grid-cols-[repeat(7,_61px)]',
'grid-cols-[repeat(8,_61px)]',
'grid-cols-[repeat(9,_61px)]',
'grid-cols-[repeat(10,_61px)]',
'grid-cols-[repeat(11,_61px)]',
'grid-cols-[repeat(12,_61px)]',
'grid-cols-[repeat(13,_61px)]',
'grid-cols-[repeat(14,_61px)]',
'grid-cols-[repeat(15,_61px)]',
'grid-cols-[repeat(16,_61px)]'
],
theme: {
extend: {
gridTemplateColumns: {
// adding more of these for my widest grids
13: 'repeat(13, minmax(0, 1fr))',
14: 'repeat(14, minmax(0, 1fr))',
15: 'repeat(15, minmax(0, 1fr))',
16: 'repeat(16, minmax(0, 1fr))'
}
}
},
plugins: [require('daisyui')]
}