forked from code4romania/war-support-dopomoha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
39 lines (38 loc) · 1.13 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 = {
theme: {
container: {
center: true,
padding: {
DEFAULT: '1rem',
sm: '1.5rem',
lg: '2rem',
},
},
extend: {
minWidth: (theme) => theme('spacing'),
maxWidth: (theme) => theme('spacing'),
minHeight: (theme) => theme('spacing'),
maxHeight: (theme) => theme('spacing'),
borderColor: (theme) => ({
inherit: 'inherit',
}),
typography: {
DEFAULT: {
css: {
maxWidth: null,
'> ul > li > *:first-child': null,
'> ul > li > *:last-child': null,
'> ol > li > *:first-child': null,
'> ol > li > *:last-child': null,
},
},
},
},
},
plugins: [
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/forms'),
require('@tailwindcss/line-clamp'),
require('@tailwindcss/typography'),
],
};