globals.css 304 B

12345678910111213141516171819202122
  1. * {
  2. box-sizing: border-box;
  3. }
  4. html,
  5. body {
  6. margin: 0;
  7. padding: 0;
  8. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
  9. sans-serif;
  10. background-color: #f9fafb;
  11. }
  12. button {
  13. font-family: inherit;
  14. }
  15. input,
  16. select,
  17. textarea {
  18. font-family: inherit;
  19. }