1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
| html, body, #app, #my-app {
| height: 100%;
| overflow: hidden;
| }
|
| body {
| background-color: #f7f9fa;
| -webkit-font-smoothing: antialiased;
| // Prevent font enlargement in horizontal screen
| text-size-adjust: 100%;
|
| font-family: Roboto, sans-serif-medium, Arial, sans-serif;
| color: $main-text-color;
| font-size: 14px;
|
| -webkit-font-smoothing: antialiased;
| -moz-osx-font-smoothing: grayscale;
| }
|
|