14 lines
219 B
JavaScript
14 lines
219 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
module.exports = {
|
||
|
content: ["./templates/**/*.html"],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
aspectRatio: {
|
||
|
albumCarousel: "1/1.25",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|
||
|
|