-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
35 lines (32 loc) · 919 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
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
fontFamily: {
spaced: ["Spaced", "sans-serif"], // Custom Spaced font
ethenocentric: ["Ethenocentric", "sans-serif"], // Custom Ethenocentric font
},
screens: {
xs: "480px", // Add your extra-small screen size
sm: "640px",
md: "768px",
},
},
keyframes: {
scrollDown: {
'0%': { transform: 'translateY(-100%)' },
'100%': { transform: 'translateY(0%)' },
},
scrollUp: {
'0%': { transform: 'translateY(0%)' },
'100%': { transform: 'translateY(-100%)' },
},
},
animation: {
scrollDown: 'scrollDown 6s linear infinite',
scrollUp: 'scrollUp 6s linear infinite',
},
},
plugins: [ require('@tailwindcss/line-clamp')],
};