reaction/tailwind.config.cjs
Daniel Svitan b8c658374f 🎉 Inits repo
2023-05-16 16:02:07 -07:00

16 lines
285 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}"],
theme: {
extend: {
width: {
page: "100vw",
},
height: {
page: "100vh",
},
},
},
plugins: [],
};