28 lines
519 B
JavaScript
28 lines
519 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
mode: "jit",
|
|
content: [
|
|
"./css/*.{js,ts,jsx,tsx,css,scss,html}",
|
|
"./css/**/*.{js,ts,jsx,tsx}",
|
|
"./src/**/*.{js,ts,jsx,tsx,rs,scss,css,html}",
|
|
"./index.html",
|
|
"./src/main.rs",
|
|
],
|
|
plugins: [require("daisyui"), require("@tailwindcss/typography")],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ["Figtree"],
|
|
serif: ["Rufina"],
|
|
mono: ["Cousine"],
|
|
},
|
|
width: {
|
|
a4: "210mm",
|
|
},
|
|
height: {
|
|
a4: "297mm",
|
|
},
|
|
},
|
|
},
|
|
};
|