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