-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
tailwind.config.js
39 lines (39 loc) · 1.19 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
36
37
38
39
module.exports = {
future: {
removeDeprecatedGapUtilities: true,
purgeLayersByDefault: true,
},
purge: ['./src/**/*.tsx', './src/**/*.html'],
theme: {
extend: {},
typography: {
default: {
css: {
code: {
color: 'none',
backgroundColor: 'none',
},
pre: {
color: 'none',
backgroundColor: 'none',
paddingTop: 'auto',
paddingLeft: 'auto',
paddingBottom: 'auto',
paddingRight: 'auto',
},
'pre code': {
padding: 'auto',
backgroundColor: 'auto',
borderWidth: 'auto',
borderRadius: 'auto',
color: 'auto',
lineHeight: 'auto',
},
},
},
},
},
variants: {},
// eslint-disable-next-line global-require
plugins: [require('@tailwindcss/typography')],
};