reset.scss 262 B

123456789101112131415161718192021222324
  1. *,
  2. *::before,
  3. *::after {
  4. margin: 0;
  5. padding: 0;
  6. box-sizing: border-box;
  7. }
  8. button {
  9. border: none;
  10. background: none;
  11. }
  12. a {
  13. text-decoration: none;
  14. color: inherit;
  15. outline: none;
  16. cursor: pointer;
  17. }
  18. a:hover,
  19. a:active {
  20. text-decoration: none;
  21. }