Files
joururi-portfolio/tailwind.config.js
2024-08-06 16:55:05 +02:00

19 lines
338 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'
],
theme: {
container: {
center: true,
screens: {
sm: '640px',
md: '640px',
lg: '760px',
xl: '960px',
'2xl': '1180px',
}
},
}
}