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
| @import 'vars';
|
| html {
| -ms-text-size-adjust: 100%;
| -webkit-text-size-adjust: 100%;
| height: 100%;
| }
|
| body {
| line-height: 1.6;
| font-family: "-apple-system-font", "Helvetica Neue", Arial, Helvetica, sans-serif;
| background-color: $color-background;
| color: $color-font;
| user-select: none;
| cursor: pointer;
| height: 100%;
| padding: 0;
| margin: 0;
| }
|
| * {
| padding: 0;
| margin: 0;
| }
|
| #root {
| height: 100%;
| overflow-x: hidden;
| overflow-y: auto;
| }
|
| #root>div {
| padding: 0 0 128px;
| }
|
| table {
| width: 100%;
| }
|
| .app-page {
| animation-duration: .4s;
| animation-name: fadeIn;
| }
|
| @keyframes fadeIn {
| from {
| opacity: 0;
| }
| to {
| opacity: 1;
| }
| }
|
|