index.less 597 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. }