-
Notifications
You must be signed in to change notification settings - Fork 14
/
tailwind.config.js
37 lines (37 loc) · 1.27 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
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: {
fontFamily: {
sans: ["Gilroy-Medium", "Gilroy-Bold", "Gilroy-Light"],
},
extend: {
backgroundImage: {
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
"gradient-conic": "conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))",
},
animation: {
"loop-scroll": "loop-scroll 15s linear infinite",
},
keyframes: {
"loop-scroll": {
from: {transform: "translateX(0%)"},
to: {transform: "translateX(-100%)"},
},
},
screens: {
mbMini: "290px",
mbXSmall: "400px",
mbMedSmall: "500px",
mbSmall: "600px",
mbMedium: "800px",
laptop: "1000px",
carousel:"932px",
tbPortrait: "1200px",
tbLandscape: "1600px",
Desktop: "2000px",
lgDesktop: "2400px",
},
},
},
plugins: [],
};