_reset.scss 117 B

12345678910
  1. // CSS Reset
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. box-sizing: border-box;
  6. }
  7. html {
  8. scroll-behavior: smooth;
  9. }