-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (39 loc) · 1.06 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
const defaultTheme = require('tailwindcss/defaultTheme');
const colors = require('tailwindcss/colors')
module.exports = {
mode: 'jit',
purge: {
content: [
'./resources/**/*.antlers.html',
'./resources/**/*.blade.php',
'./content/**/*.md'
]
},
important: true,
theme: {
fontFamily: {
sans: ['Inter', ...defaultTheme.fontFamily.sans],
},
extend: {
typography: (theme) => ({
DEFAULT: {
css: {
li: {
marginBottom: '0',
marginTop: '0',
'> p': {
marginTop: '0 !important',
marginBottom: '0 !important'
}
}
},
},
}),
},
},
variants: {},
plugins: [
require('@tailwindcss/forms'),
require('@tailwindcss/typography'),
],
}