-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (48 loc) · 1.29 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
48
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./**/*.{njk,html}", "./posts/post/order-css-tailwind.md"],
theme: {
fontFamily: {
sans: ["Hex Franklin", "sans-serif"],
},
extend: {
typography: (theme) => ({
DEFAULT: {
css: {
blockquote: {
position: "relative",
fontStyle: "normal",
backgroundColor: theme("colors.gray.50"),
margin: "1rem -3rem",
padding: "1rem 3rem !important",
borderTop: "1px solid #e5e7eb",
borderBottom: "1px solid #e5e7eb",
},
"blockquote p:first-of-type": {
margin: "0 !important",
},
hr: {
borderColor: theme("colors.gray.200"),
width: "320px !important",
margin: "2rem auto",
},
p: {
fontSize: "18px",
lineHeight: "1.7",
color: "black",
},
li: {
fontSize: "18px",
lineHeight: "1.7",
color: "black",
},
h1: {
color: "black",
},
},
},
}),
},
},
plugins: [require("@tailwindcss/typography")],
};