We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d009bc commit f0efa85Copy full SHA for f0efa85
src/tailwind.ts
@@ -122,6 +122,24 @@ const config = {
122
highlight: "#FF9F1C",
123
},
124
125
+ extend: {
126
+ gridTemplateColumns: {
127
+ ...Object.fromEntries(
128
+ Array.from({ length: 12 }, (_, i) => [
129
+ `${i + 1}-auto`,
130
+ `repeat(${i + 1}, auto)`,
131
+ ]),
132
+ ),
133
+ },
134
+ gridTemplateRows: {
135
136
137
138
139
140
141
142
143
} satisfies PresetsConfig;
144
145
export default config;
0 commit comments