tonybark.com/tailwind.config.ts

34 lines
738 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'
2024-12-03 13:07:24 -08:00
},
'img': {
'border-style': 'solid',
'border-color': 'gray',
'border-width': '1px',
'border-radius': '1em'
2024-12-03 10:07:06 -08:00
}
},
},
},
}
},
plugins: [forms, typography]
} satisfies Config;