forked from kamranahmedse/developer-roadmap
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
31 lines (30 loc) · 833 Bytes
/
tailwind.config.cjs
File metadata and controls
31 lines (30 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue,svg}'],
theme: {
fontFamily: {
'sans':['ui-sans-serif', 'system-ui'],
'poppins': ['Poppins', 'sans-serif'],
'Dancing Script': ['Dancing Script', 'cursive'],
},
extend: {
fontFamily: {
Dance: ["Dancing Script", "cursive"],
Rogue: ['Rouge Script', 'cursive'],
dalena: ['Dalena', 'cursive'],
},
typography: {
quoteless: {
css: {
'blockquote p:first-of-type::before': { content: 'none' },
'blockquote p:first-of-type::after': { content: 'none' },
},
},
},
},
container: {
center: true,
},
},
plugins: [require('@tailwindcss/typography')],
};