-
Notifications
You must be signed in to change notification settings - Fork 11
/
tailwind.config.js
49 lines (48 loc) · 1.05 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
40
41
42
43
44
45
46
47
48
49
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
purge: [],
theme: {
typography: {
default: {
css: {
'p': {
'margin-top': '0.75em',
'margin-bottom': '0.75em'
},
'code::before': { // Stop quoting inline code blocks
content: '""',
},
'code::after': {
content: '""',
},
'blockquote p:first-of-type::before': { // The "> text " (quoted) in blogs
content: '""',
},
'blockquote p:last-of-type::after': {
content: '""',
},
},
},
lg: {
css: {
'li': {
marginTop: 0,
marginBottom: 0,
}
}
}
},
extend: {
fontFamily: {
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
}
}
},
variants: {},
plugins: [
require('@tailwindcss/ui'),
require("postcss-import"),
require("autoprefixer"),
require("@tailwindcss/typography"),
],
}