forked from Uniswap/interface
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal.css
More file actions
59 lines (53 loc) · 1.13 KB
/
Copy pathglobal.css
File metadata and controls
59 lines (53 loc) · 1.13 KB
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
/* Add styles here only for things Tamagui doesn't support. Ideally very few
things go here, but stuff like keyframe CSS animations that Tamagui doesn't
support can be added here. Be sure to try `$platform-web` style prop first as
that should avoid needing to add here. */
.text-wrap-pretty {
text-wrap: pretty;
}
.text-decoration-none {
text-decoration: none;
}
@media screen and (max-width: 864px) {
/* the :root:root:root is to have higher specificity than tamagui */
:root:root:root .connect-with-us-layout {
display: flex;
flex-direction: column;
}
}
@keyframes token-float-animation {
0% {
transform: translateY(-8px);
}
50% {
transform: translateY(8px);
}
100% {
transform: translateY(-8px);
}
}
@keyframes token-rotate-animation {
0% {
transform: rotate(-22deg);
}
100% {
transform: rotate(22deg);
}
}
.scrollbar-hidden {
::-webkit-scrollbar {
display: none;
}
-ms-overflow-style: none;
scrollbar-width: none;
}
.last-child-flex-end {
&:last-child {
justify-content: flex-end;
}
}
.first-child-flex-grow-0 {
&:first-child {
flex-grow: 0;
}
}