17 lines
368 B
JavaScript
17 lines
368 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./views/**/*.{html,js}"],
|
|
theme: {
|
|
extend: {
|
|
gridTemplateRows: {
|
|
// Simple 16 row grid
|
|
'19': 'repeat(19, minmax(0, 1fr))',
|
|
|
|
// Complex site-specific row configuration
|
|
'layout': '200px minmax(900px, 1fr) 100px',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|