2024-07-27 18:49:59 -07:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2024-07-28 19:41:21 -07:00
|
|
|
content: ["./ui/**/*.html"],
|
2024-07-27 18:49:59 -07:00
|
|
|
theme: {
|
|
|
|
extend: {
|
|
|
|
aspectRatio: {
|
|
|
|
albumCarousel: "1/1.25",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
}
|
|
|
|
|