add item image

This commit is contained in:
2025-03-03 15:21:01 +01:00
parent cdfd77bc21
commit 803535daba
12 changed files with 401 additions and 112 deletions

16
tailwind.config.js Normal file
View File

@@ -0,0 +1,16 @@
/** @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: [],
}