-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
30 lines (30 loc) · 897 Bytes
/
tailwind.config.js
File metadata and controls
30 lines (30 loc) · 897 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
28
29
30
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./app/**/*.{js,ts,jsx,tsx}", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
typography: ({ theme }) => ({
DEFAULT: {
css: {
code: {
backgroundColor: theme("colors.gray.100"),
borderRadius: theme("borderRadius.sm"),
paddingTop: theme("padding[1]"),
paddingRight: theme("padding[1.5]"),
paddingBottom: theme("padding[1]"),
paddingLeft: theme("padding[1.5]"),
fontWeight: "normal",
},
"code::before": {
content: "normal",
},
"code::after": {
content: "normal",
},
},
},
}),
},
},
plugins: [require("@tailwindcss/forms"), require("@tailwindcss/typography")],
};