blog-ts/tailwind.config.ts

25 lines
598 B
TypeScript
Raw Normal View History

2023-09-25 19:49:12 +10:00
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
2023-09-25 22:17:46 +10:00
'blog-cover': "url('/assets/placeholder.webp')"
2023-09-25 19:49:12 +10:00
},
2023-10-21 10:17:10 +11:00
width: {
'224': '56rem',
}
2023-09-25 19:49:12 +10:00
},
},
plugins: [],
}
export default config