mirror of
https://github.com/tonytins/tonybark.com.git
synced 2025-03-14 23:11:21 +00:00
33 lines
738 B
TypeScript
33 lines
738 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'
|
|
},
|
|
'img': {
|
|
'border-style': 'solid',
|
|
'border-color': 'gray',
|
|
'border-width': '1px',
|
|
'border-radius': '1em'
|
|
}
|
|
},
|
|
},
|
|
},
|
|
}
|
|
},
|
|
|
|
plugins: [forms, typography]
|
|
} satisfies Config;
|