Нет описания

index.scss 1004B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. @import './element-ui.scss';
  2. @import './mixin.scss';
  3. body {
  4. -moz-osx-font-smoothing: grayscale;
  5. -webkit-font-smoothing: antialiased;
  6. text-rendering: optimizeLegibility;
  7. font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
  8. }
  9. html {
  10. box-sizing: border-box;
  11. }
  12. *,
  13. *:before,
  14. *:after {
  15. box-sizing: inherit;
  16. }
  17. a:focus,
  18. a:active {
  19. outline: none;
  20. }
  21. a,
  22. a:focus,
  23. a:hover {
  24. cursor: pointer;
  25. color: inherit;
  26. text-decoration: none;
  27. }
  28. .clearfix {
  29. &:after {
  30. visibility: hidden;
  31. display: block;
  32. font-size: 0;
  33. content: " ";
  34. clear: both;
  35. height: 0;
  36. }
  37. }
  38. //vue router transition css
  39. .fade-enter-active,
  40. .fade-leave-active {
  41. transition: all .2s ease
  42. }
  43. .fade-enter,
  44. .fade-leave-active {
  45. opacity: 0;
  46. }
  47. //main-container全局样式
  48. .app-main{
  49. min-height: 100%
  50. }
  51. .app-container {
  52. padding: 20px;
  53. }
  54. .svg-icon {
  55. width: 1em;
  56. height: 1em;
  57. vertical-align: -0.15em;
  58. fill: currentColor;
  59. overflow: hidden;
  60. }