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