forked from Dashrath-Patel/CryptoGuard-AI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtaillwind.config.ts
More file actions
38 lines (36 loc) · 811 Bytes
/
taillwind.config.ts
File metadata and controls
38 lines (36 loc) · 811 Bytes
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
import type { Config } from "tailwindcss";
const config: Config = {
content: [
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {
animation: {
move: "move 5s linear infinite",
},
keyframes: {
move: {
"0%": { transform: "translateX(-200px)" },
"100%": { transform: "translateX(200px)" },
},
},
perspective: {
'1000': '1000px',
},
transformStyle: {
'preserve-3d': 'preserve-3d',
},
backfaceVisibility: {
'hidden': 'hidden',
},
rotate: {
'y-180': 'rotateY(180deg)',
},
},
},
plugins: [],
};
export default config;