style.css 637 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* 全局样式重置 */
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. box-sizing: border-box;
  6. }
  7. html, body {
  8. height: 100%;
  9. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  10. background-color: #f5f5f5;
  11. color: #333;
  12. line-height: 1.6;
  13. }
  14. #app {
  15. min-height: 100vh;
  16. }
  17. /* 滚动条样式 */
  18. ::-webkit-scrollbar {
  19. width: 6px;
  20. height: 6px;
  21. }
  22. ::-webkit-scrollbar-track {
  23. background: #f1f1f1;
  24. border-radius: 3px;
  25. }
  26. ::-webkit-scrollbar-thumb {
  27. background: #c1c1c1;
  28. border-radius: 3px;
  29. }
  30. ::-webkit-scrollbar-thumb:hover {
  31. background: #a8a8a8;
  32. }