Next.js template
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_base.scss 736B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. body {
  2. margin: 0;
  3. -webkit-font-smoothing: antialiased;
  4. -moz-osx-font-smoothing: grayscale;
  5. overflow-anchor: none;
  6. }
  7. * {
  8. box-sizing: border-box;
  9. }
  10. html {
  11. min-height: 100%;
  12. font-size: 16px;
  13. @include media-below($bp-xxl) {
  14. font-size: 14px;
  15. }
  16. @include media-below($bp-xs) {
  17. font-size: 13px;
  18. }
  19. @include media-below($bp-xxs) {
  20. font-size: 10.5px;
  21. }
  22. }
  23. html,
  24. body,
  25. #root {
  26. @include flex-column;
  27. flex: 1 0 auto;
  28. }
  29. input[type='search']::-webkit-search-decoration,
  30. input[type='search']::-webkit-search-cancel-button,
  31. input[type='search']::-webkit-search-results-button,
  32. input[type='search']::-webkit-search-results-decoration {
  33. -webkit-appearance: none;
  34. }
  35. ul {
  36. list-style: none;
  37. padding: 0;
  38. }