-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
64 lines (53 loc) · 1.08 KB
/
index.css
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';
html, body {
overflow-x: hidden;
width: 100%;
height: 100%;
}
body {
position: relative;
-webkit-overflow-scrolling: touch;
}
#root {
display: flex;
flex-direction: column;
min-height: 100vh;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.scrollbar-hide {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
scroll-behavior: smooth;
}
@tailwind base;
@tailwind components;
@tailwind utilities;
@keyframes marquee {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-100%);
}
}
@keyframes marquee2 {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-200%);
}
}
.animate-marquee {
animation: marquee 30s linear infinite;
}
.animate-marquee2 {
animation: marquee2 30s linear infinite;
}