bac744d506
Signed-off-by: Nickiel12 <nickiel@nickiel.net>
13 lines
228 B
JavaScript
13 lines
228 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./ui/**/*.html", "./ui/**/*.js"],
|
|
theme: {
|
|
extend: {
|
|
aspectRatio: {
|
|
albumCarousel: "1/1.25",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|