packages/client/src/index.css 826 B raw
1
body {
2
	min-height: 100vh;
3
	min-height: 100dvh;
4
	display: flex;
5
	align-items: center;
6
	justify-content: center;
7
	margin: 0;
8
	padding: 20px;
9
	padding-top: max(20px, env(safe-area-inset-top));
10
	padding-bottom: max(20px, env(safe-area-inset-bottom));
11
	padding-left: max(20px, env(safe-area-inset-left));
12
	padding-right: max(20px, env(safe-area-inset-right));
13
	overflow: hidden;
14
	box-sizing: border-box;
15
}
16
17
body::before {
18
	content: "";
19
	position: fixed;
20
	inset: 0;
21
	background: url("./xp.jpg") no-repeat center center;
22
	background-size: cover;
23
	z-index: -1;
24
}
25
26
#root {
27
	width: 100%;
28
	display: flex;
29
	justify-content: center;
30
}
31
32
/* Hide toolbar text labels and secondary icons on mobile */
33
@media (max-width: 600px) {
34
	.ie-toolbar span {
35
		display: none !important;
36
	}
37
	.ie-toolbar .ie-secondary {
38
		display: none !important;
39
	}
40
}