-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
55 lines (48 loc) · 1 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
@tailwind base;
@tailwind components;
@tailwind utilities;
html,
body,
#root,
.app {
height: 100%;
}
html,
body {
margin: 0;
padding: 0;
}
@layer utilities {
/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
.customShadow {
box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
}
/* .mobileMenu {
transition: all 1s ease-in-out;
} */
@media (max-width: 768px) {
.mobileMenu {
flex-direction: column;
align-items: center;
justify-content: center;
height: 101vh;
position: fixed;
top: 0;
z-index: 100;
background-color: #000;
color: #fff;
text-transform: uppercase;
box-shadow: -10px 0px 8px 0 rgba(0, 0, 0, 0.2);
transition: all 0.3s ease-in-out;
gap: 5rem;
}
}
}