-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
45 lines (45 loc) · 1.06 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
screens: {
hypersm: "360px",
smsm: "380px",
ssm: "400px",
smm: "500px",
sm: "640px",
md: "768px",
mdd: "900px",
lg: "1024px",
lgg: "1130px",
lx: "1200px",
xl: "1280px",
"2xl": "1536px",
},
extend: {
animation: {
"scale-up": "scale-up 5s infinite",
},
keyframes: {
"scale-up": {
"0%": { transform: "rotate(0deg) scale(1)" },
"50%": { transform: "rotate(180deg) scale(1.5)" },
"100%": { transform: "rotate(360deg) scale(1)" },
},
},
backgroundImage: {
hero: "url(/hero-bg.webp)",
},
fontFamily: {
inter: ["var(--font-inter)"],
roboto: ["var(--font-roboto)"],
"jet-brains": ["var(--font-jet-brains-mono)"],
},
},
},
plugins: [],
}