-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
47 lines (46 loc) · 1.48 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
module.exports = {
content: [
'./resources/views/widgets/_content.blade.php',
],
darkMode: 'selector',
theme: {
extend: {
typography: {
'statamic-sticky-notes': {
css: {
fontSize: '0.875rem',
lineHeight: '1.25rem',
maxWidth: '100%',
h1: {
marginTop: '0.4em',
marginBottom: '0.8em',
},
h2: {
marginTop: '1.2em',
marginBottom: '0.8em',
},
h3: {
marginTop: '1.2em',
marginBottom: '0.6em',
},
li: {
marginBottom: '0',
marginTop: '0',
'> p': {
marginTop: '0.5rem !important',
marginBottom: '0.5rem !important'
}
},
'ul ul': {
marginBottom: '0 !important',
marginTop: '0 !important'
}
},
},
}
},
},
plugins: [
require('@tailwindcss/typography'),
]
}