Files
theme-earth/tailwind.config.cjs
Ryan Wang bf574b7aeb feat: post sidebar support table of content
Signed-off-by: Ryan Wang <i@ryanc.cc>
2022-10-15 14:02:28 +08:00

21 lines
409 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./templates/**/*.html","./src/main.ts"],
theme: {
extend: {},
container: {
padding: {
DEFAULT: "1rem",
sm: "2rem",
lg: "4rem",
xl: "5rem",
"2xl": "6rem",
},
},
},
plugins: [
require("@tailwindcss/aspect-ratio"),
require("@tailwindcss/typography"),
],
}