-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
38 lines (38 loc) · 982 Bytes
/
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
module.exports = {
mode: "jit",
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./layouts/**/*.{js,ts,jsx,tsx}",
],
theme: {
screens: {
small: { raw: "(min-height: 700px)" },
big: { raw: "(min-height: 850px)" },
sm: "640px",
md: "768px",
lg: "1024px",
xl: "1280px",
},
fontFamily: {
fix: "Ping Fang",
menu: ["Roboto Mono"],
title: ["Crimson Text"],
next: [
"Menlo",
"Monaco",
"Lucida Console",
"Liberation Mono",
"DejaVu Sans Mono",
"Bitstream Vera Sans Mono",
"Courier New",
"monospace",
],
},
extend: {},
},
plugins: [require("daisyui")],
daisyui: {
themes: ["light", "dark"],
},
};