-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.cjs
54 lines (50 loc) · 1.1 KB
/
tailwind.config.cjs
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
50
51
52
53
54
const typography = require('@tailwindcss/typography')
const forms = require('@tailwindcss/forms')
const config = {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
fontFamily: {
sans: ['Vazirmatn', 'sans-serif'],
serif: ['serif'],
},
extend: {
width: {
a4: '210mm',
a5: '148mm',
},
height: {
a4: '297mm',
a5: '210mm',
},
typography: {
DEFAULT: {
css: {
lineHeight: '1.625',
h1: {
fontWeight: 'bold',
fontSize: '1.9em',
},
ol: {
paddingLeft: 0,
paddingRight: '1.625em',
li: {
paddingLeft: 0,
paddingRight: '0.375em'
}
},
ul: {
paddingLeft: 0,
paddingRight: '1.625em',
li: {
paddingLeft: 0,
paddingRight: '0.375em'
}
},
},
},
},
},
},
plugins: [forms, typography],
}
module.exports = config