-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathApp.css
53 lines (47 loc) · 906 Bytes
/
App.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
:not(input) {
-webkit-touch-callout: none !important;
-webkit-tap-highlight-color: transparent !important;
}
.app .MuiCircularProgress-root {
color: #007FFF;
}
.app {
display: grid;
place-items: center;
background-color: white;
height: 100%;
transform-origin: 0% 0%;
position: absolute;
left: 0;
right: 0;
}
.app__body {
background-color: #d2f7ff;
display: flex;
height: 100%;
width: 100%;
box-shadow: -1px 4px 20px 6px rgba(0,0,0,0.2);
overflow: hidden;
position: relative;
border-top: 1px solid lightgrey;
}
html {
overflow: hidden;
}
.loader__container {
background-color: white;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
@media (max-width: 760px) {
.app__body {
display: block;
position: relative;
border-radius: 0;
background-color: white;
border-top: none;
}
}