normalize.less 367 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. @import './var';
  2. html {
  3. -webkit-tap-highlight-color: transparent;
  4. }
  5. body {
  6. margin: 0;
  7. font-family: @base-font-family;
  8. }
  9. a {
  10. text-decoration: none;
  11. }
  12. input,
  13. button,
  14. textarea {
  15. color: inherit;
  16. font: inherit;
  17. }
  18. a,
  19. input,
  20. button,
  21. textarea,
  22. [class*='van-'] {
  23. &:focus {
  24. outline: none;
  25. }
  26. }
  27. ol,
  28. ul {
  29. margin: 0;
  30. padding: 0;
  31. list-style: none;
  32. }