forked from Ansh-Rathod/Nextjs-Musive-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
48 lines (47 loc) · 927 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
39
40
41
42
43
44
45
46
47
48
// /** @type {import('tailwindcss').Config} */
module.exports = {
// darkMode: 'class',
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
"./layouts/**/*.{js,ts,jsx,tsx}",
],
theme: {
container: {
center: true,
},
fontFamily: {
ProximaRegular: ["ProximaNova Regular"],
ProximaBold: ["ProximaNova Bold"],
},
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,
},
},
plugins: [require("@tailwindcss/line-clamp")],
};