mirror of
https://github.com/tonytins/tonybark.com.git
synced 2025-03-21 09:31:20 +00:00
28 lines
551 B
TypeScript
28 lines
551 B
TypeScript
|
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;
|