tonybark.com/tailwind.config.ts

28 lines
551 B
TypeScript
Raw Normal View History

2024-12-03 10:07:06 -08:00
import forms from '@tailwindcss/forms';
import typography from '@tailwindcss/typography';
import type { Config } from 'tailwindcss';
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
typography: {
DEFAULT: {
css: {
'.task-list-item': {
'list-style-type': 'none'
},
'[type="checkbox"]': {
'border-radius': '5px'
}
},
},
},
}
},
plugins: [forms, typography]
} satisfies Config;