2024-02-22 20:13:23 +01:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2024-08-07 19:21:29 +02:00
|
|
|
content: ["./templates/**/*.html"],
|
|
|
|
theme: {
|
2024-09-10 21:58:57 +02:00
|
|
|
extend: {
|
|
|
|
spacing: {
|
|
|
|
note: "60rem",
|
|
|
|
read: "64rem",
|
|
|
|
image: "70rem",
|
|
|
|
},
|
|
|
|
width: {
|
|
|
|
note: "60rem",
|
|
|
|
read: "64rem",
|
|
|
|
image: "70rem",
|
|
|
|
},
|
|
|
|
},
|
2024-08-07 19:21:29 +02:00
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
};
|