blob: 86f45a0acbbcec3c46b77e3fd0c08a34037df139 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
html,
body,
#app {
position: relative;
width: 100%;
height: 100%;
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Poppins", sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
}
|