22 lines
455 B
1
/** @type {import('tailwindcss').Config} */
2
module.exports = {
3
content: ["./appview/pages/templates/**/*.html"],
4
theme: {
5
container: {
6
padding: "2rem",
7
center: true,
8
screens: {
9
sm: "540px",
10
md: "650px",
11
lg: "900px",
12
xl: "1100px",
13
"2xl": "1300x",
14
},
15
},
16
extend: {
17
fontFamily: {
18
sans: ["Inter", "system-ui", "sans-serif", "ui-sans-serif"],
19
},
20
},
21
},
22
};
23