style.css 216 B

123456789101112131415161718
  1. :root {
  2. color: #1a1a1a;
  3. background-color: #f6f6f6;
  4. font-family: "Helvetica Neue", Arial, sans-serif;
  5. line-height: 1.5;
  6. }
  7. * {
  8. box-sizing: border-box;
  9. }
  10. body {
  11. margin: 0;
  12. }
  13. #app {
  14. min-height: 100vh;
  15. }