forked from project-serum/spl-token-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
47 lines (42 loc) · 851 Bytes
/
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
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* TODO consolidate popup dimensions */
html,
body,
#root {
min-width: 375px;
min-height: 600px;
height: 100%;
}
/* TODO consolidate popup dimensions */
@media screen and (max-height: 700px) {
html,
body,
#root {
max-height: 600px;
}
}
/* TODO consolidate popup dimensions */
@media screen and (max-width: 450px) {
html,
body,
#root {
max-width: 375px;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar,
#root::-webkit-scrollbar {
width: 1px;
background: transparent;
}
}
#root {
display: flex;
flex-direction: column;
}