-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
41 lines (40 loc) · 1.09 KB
/
tailwind.config.cjs
File metadata and controls
41 lines (40 loc) · 1.09 KB
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
32
33
34
35
36
37
38
39
40
41
/** @type {import("tailwindcss").Config} */
module.exports = {
theme: {
extend: {
typography: () => ({
DEFAULT: {
css: {
'code::before': {
content: '"" !important',
},
'code::after': {
content: '"" !important',
},
blockquote: {
'font-style': 'normal',
'font-weight': 500,
'font-size': '1.5rem',
'& *::before': {
content: 'normal !important',
},
'& *::after': {
content: 'normal !important',
},
'& cite': {
'font-style': 'normal',
'font-family': 'IBM Plex Sans',
'font-weight': 600,
'font-size': '1.25rem',
display: 'inline-block !important',
'padding-top': '1rem !important',
'margin-top': '2rem',
'border-top': '1.5px solid black !important',
},
},
},
},
}),
},
},
}