_main.scss 467B

1234567891011121314151617181920212223242526272829
  1. * {
  2. box-sizing: border-box;
  3. }
  4. html {
  5. height: 100%;
  6. font-size: $fontSize;
  7. }
  8. body {
  9. font-family: var(--font-family);
  10. color: var(--text-color);
  11. background-color: var(--surface-ground);
  12. margin: 0;
  13. padding: 0;
  14. min-height: 100%;
  15. -webkit-font-smoothing: antialiased;
  16. -moz-osx-font-smoothing: grayscale;
  17. }
  18. a {
  19. text-decoration: none;
  20. color: var(--primary-color);
  21. }
  22. .layout-theme-light {
  23. background-color: #edf1f5;
  24. }