michalvankodev-site/axum_server/tailwind.config.js

22 lines
351 B
JavaScript
Raw Normal View History

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