-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
27 lines (27 loc) · 661 Bytes
/
tailwind.config.js
File metadata and controls
27 lines (27 loc) · 661 Bytes
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
module.exports = {
content: [
'./app/Resources/themes/**/*.html.twig',
'./app/Resources/css/**/*.css',
],
darkMode: 'media',
theme: {
extend: {
typography: {
DEFAULT: {
css: {
"code::before": false,
"code::after": false,
"blockquote p:first-of-type::before": false,
"blockquote p:last-of-type::after": false,
},
},
},
}
},
variants: {
extend: {},
},
plugins: [
require('@tailwindcss/typography'),
]
}