index.scss 937 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. @import './variables.scss';
  2. @import './mixin.scss';
  3. @import './transition.scss';
  4. @import './element-ui.scss';
  5. @import './sidebar.scss';
  6. @import './public.scss';
  7. body {
  8. height: 100%;
  9. -moz-osx-font-smoothing: grayscale;
  10. -webkit-font-smoothing: antialiased;
  11. text-rendering: optimizeLegibility;
  12. font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
  13. }
  14. label {
  15. font-weight: 700;
  16. }
  17. html {
  18. height: 100%;
  19. box-sizing: border-box;
  20. }
  21. #app {
  22. height: 100%;
  23. }
  24. *,
  25. *:before,
  26. *:after {
  27. box-sizing: inherit;
  28. }
  29. a:focus,
  30. a:active {
  31. outline: none;
  32. }
  33. a,
  34. a:focus,
  35. a:hover {
  36. cursor: pointer;
  37. color: inherit;
  38. text-decoration: none;
  39. }
  40. div:focus {
  41. outline: none;
  42. }
  43. .clearfix {
  44. &:after {
  45. visibility: hidden;
  46. display: block;
  47. font-size: 0;
  48. content: " ";
  49. clear: both;
  50. height: 0;
  51. }
  52. }
  53. // main-container global css
  54. .app-container {
  55. padding: 20px;
  56. }