环卫车小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
684 B

4 months ago
  1. * {
  2. -webkit-overflow-scrolling: touch;
  3. -webkit-touch-callout: text;
  4. -webkit-user-select: text;
  5. user-select: text;
  6. // touch-action: pan-y;
  7. }
  8. * {
  9. box-sizing: border-box;
  10. padding: 0;
  11. margin: 0;
  12. }
  13. * {
  14. &:hover,
  15. &:focus,
  16. &:active {
  17. outline: none;
  18. }
  19. }
  20. html {
  21. height: 100%;
  22. // overflow: hidden;
  23. }
  24. body {
  25. height: 100%;
  26. background-color: #f5f5f5;
  27. color: #333333;
  28. }
  29. ul,
  30. li,
  31. ol {
  32. list-style: none;
  33. }
  34. img,
  35. button,
  36. input,
  37. textarea {
  38. border: none;
  39. outline: none;
  40. resize: none;
  41. }
  42. img {
  43. display: block;
  44. }
  45. a {
  46. text-decoration: none;
  47. }
  48. // iframe {
  49. // display: none;
  50. // }
  51. #app {
  52. height: 100%;
  53. font-size: 28rpx;
  54. word-break: break-all;
  55. }