index.less 983 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. * {
  2. padding: 0;
  3. margin: 0;
  4. border: 0;
  5. box-sizing: border-box;
  6. }
  7. #app {
  8. -webkit-font-smoothing: antialiased;
  9. -moz-osx-font-smoothing: grayscale;
  10. color: #333;
  11. min-height: 100vh;
  12. }
  13. body {
  14. user-select: none;
  15. background-color: #f1f5ff;
  16. }
  17. @font-face {
  18. font-family: 'dotfont';
  19. /* Project id */
  20. src: url('../common/text-security-disc.woff') format('woff');
  21. }
  22. .cr-ellipsis {
  23. overflow: hidden;
  24. white-space: nowrap;
  25. text-overflow: ellipsis;
  26. }
  27. .fade-enter-active,
  28. .fade-leave-active {
  29. transition: opacity 0.5s ease;
  30. }
  31. .fade-enter-from,
  32. .fade-leave-to {
  33. opacity: 0;
  34. }
  35. ::-webkit-scrollbar {
  36. width: 8px;
  37. height: 12px;
  38. background-color: #fff;
  39. }
  40. ::-webkit-scrollbar-thumb {
  41. display: block;
  42. min-height: 12px;
  43. min-width: 8px;
  44. border-radius: 6px;
  45. background-color: rgb(217, 217, 217);
  46. }
  47. ::-webkit-scrollbar-thumb:hover {
  48. display: block;
  49. min-height: 12px;
  50. min-width: 8px;
  51. border-radius: 6px;
  52. background-color: rgb(159, 159, 159);
  53. }