forked from star-history/star-history
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
41 lines (41 loc) · 795 Bytes
/
tailwind.config.js
File metadata and controls
41 lines (41 loc) · 795 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
31
32
33
34
35
36
37
38
39
40
41
module.exports = {
content: [
"./index.html",
"./src/extension/popup.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
dark: "RGB(54, 54, 54)",
light: "RGB(245, 245, 245)",
},
minWidth: {
"600px": "600px",
},
minHeight: {
"400px": "400px",
},
boxShadow: {
focus: "0 0 0 0.125em rgb(54 54 54 / 25%)",
},
zIndex: {
100: "100",
},
spacing: {
52: "13rem",
112: "28rem",
128: "32rem",
152: "38rem",
160: "40rem",
176: "44rem",
192: "48rem",
208: "52rem",
},
},
},
plugins: [
require("@tailwindcss/typography"),
require("@tailwindcss/line-clamp"),
],
};