-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
35 lines (35 loc) · 1.04 KB
/
tailwind.config.js
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
module.exports = {
purge: [
'./components/**/*.{js,ts,jsx,tsx}',
'./pages/**/*.{js,ts,jsx,tsx}'
],
darkMode: false, // or 'media' or 'class'
theme: {
extend: {
typography: {
DEFAULT: {
css: {
code: {
padding: '0.2rem 0.3rem',
overflow: 'auto',
fontSize: '85%',
lineHeight: 1.45,
backgroundColor: '#f6f8fa',
borderRadius: '3px',
'&::after': {
content: '"" !important'
},
'&::before': {
content: '"" !important'
}
}
}
}
}
}
},
variants: {
extend: {}
},
plugins: [require('@tailwindcss/typography')]
};