0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-03 22:57:08 -05:00
astro/examples/server-islands/tailwind.config.cjs
Matthew Phillips 5da2be3305 Spike
2024-06-14 08:50:55 -04:00

27 lines
516 B
JavaScript

module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
screen: {
sm: "576px",
md: "768px",
lg: "992px",
xl: "1200px",
},
container: {
center: true,
padding: "1rem",
},
extend: {
fontFamily: {
poppins: ["Poppins", "sans-serif"],
roboto: ["Roboto", "sans-serif"],
},
colors: {
primary: "#fd3d57",
},
},
},
plugins: [
require("@tailwindcss/forms"),
],
};