2024-02-06 23:51:11 +00:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2024-02-08 00:17:43 +00:00
|
|
|
content: [
|
|
|
|
"./src/**/*.{html,js}"
|
|
|
|
],
|
2024-02-06 23:51:11 +00:00
|
|
|
theme: {
|
2024-02-07 16:38:08 +00:00
|
|
|
extend: {
|
|
|
|
gridTemplateColumns: {
|
|
|
|
'lists': 'minmax(1fr, 400px)) 1fr',
|
|
|
|
}
|
|
|
|
},
|
2024-02-06 23:51:11 +00:00
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
}
|
|
|
|
|