-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
45 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
45
import { nextui } from "@nextui-org/theme";
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./layouts/**/*.{js,ts,jsx,tsx}",
"./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}",
],
theme: {
container: {
center: true,
},
screens: {
mobile: {
min: "100px",
max: "550px",
},
tablet: {
min: "550px",
max: "750px",
},
"mini-laptop": {
min: "750px",
max: "874px",
},
laptop: {
min: "874px",
max: "1280px",
},
desktop: {
min: "1280px",
},
},
borderWidth: {
DEFAULT: "0.5px",
},
extend: {},
future: {
hoverOnlyWhenSupported: true,
},
},
darkMode: "class",
plugins: [nextui()],
};