1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-02-17 14:24:56 +01:00
developer-roadmap/tailwind.config.cjs

21 lines
504 B
JavaScript
Raw Normal View History

2022-12-31 17:01:40 +04:00
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue,svg}'],
2022-12-31 20:37:14 +04:00
theme: {
extend: {
typography: {
quoteless: {
css: {
'blockquote p:first-of-type::before': { content: 'none' },
'blockquote p:first-of-type::after': { content: 'none' },
},
},
},
},
2022-12-31 20:37:14 +04:00
container: {
center: true,
},
},
plugins: [require('@tailwindcss/typography')],
2022-12-31 20:37:14 +04:00
};