forked from wass08/r3f-animated-book-slider-final
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
32 lines (32 loc) · 849 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
fontFamily: {
sans: ["Poppins", "sans-serif"],
},
extend: {
fontSize: {
"10xl": "10rem",
"11xl": "11rem",
"12xl": "12rem",
"13xl": "13rem",
},
animation: {
"horizontal-scroll": "horizontal-scroll linear 16s infinite ",
"horizontal-scroll-2": "horizontal-scroll-2 linear 16s infinite ",
},
keyframes: {
"horizontal-scroll": {
from: { transform: "translateX(0)" },
to: { transform: "translateX(-100%)" },
},
"horizontal-scroll-2": {
from: { transform: "translateX(100%)" },
to: { transform: "translateX(0)" },
},
},
},
},
plugins: [],
};