14 lines
234 B
JavaScript
14 lines
234 B
JavaScript
|
/** @type {import('tailwindcss').Config} */
|
||
|
export default {
|
||
|
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
margin: {
|
||
|
'25p': '25%',
|
||
|
}
|
||
|
},
|
||
|
},
|
||
|
plugins: [],
|
||
|
}
|
||
|
|