-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
44 lines (44 loc) · 1.04 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./src/**/*.{html,js,ts,tsx,jsx}"],
theme: {
extend: {
transitionProperty: {
height: "height",
spacing: "margin, padding",
},
typography: {
DEFAULT: {
// Prose changes
css: {
// marginLeft: "30px",
color: "inherit",
"*": {
color: "inherit",
},
// h1: {
// paddingBottom: "5px",
// marginLeft: "-5px",
// height: "0px",
// },
// h2: {
// height: "0px",
// paddingBottom: "15px",
// },
// li: {
// paddingBottom: "5px",
// height: "5px",
// },
// ol: {
// paddingBottom: "5px",
// height: "5px",
// },
},
},
},
},
},
darkMode: "media",
important: "html",
plugins: [require("@tailwindcss/typography")],
};