michalvankodev-site/axum_server/tailwind.config.js

35 lines
583 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: {
2024-09-13 23:21:51 +02:00
fontFamily: {
sans: [
"Baloo2",
"Comfortaa",
"ui-sans-serif",
"system-ui",
"sans-serif",
"Apple Color Emoji",
"Segoe UI Emoji",
"Segoe UI Symbol",
"Noto Color Emoji",
],
},
2024-09-10 21:58:57 +02:00
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: [],
};