website/tailwind.config.js

14 lines
234 B
JavaScript
Raw Normal View History

2024-12-01 19:42:15 +00:00
/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
margin: {
'25p': '25%',
}
},
},
plugins: [],
}