Spaces:
Sleeping
Sleeping
File size: 216 Bytes
a60c0af | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | :root {
color: #1a1a1a;
background-color: #f6f6f6;
font-family: "Helvetica Neue", Arial, sans-serif;
line-height: 1.5;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
}
#app {
min-height: 100vh;
}
|