global.less 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. html,
  2. body,
  3. #root {
  4. height: 100%;
  5. margin: 0;
  6. padding: 0;
  7. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
  8. 'Noto Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
  9. 'Noto Color Emoji';
  10. }
  11. .colorWeak {
  12. filter: invert(80%);
  13. }
  14. .ant-layout {
  15. min-height: 100vh;
  16. }
  17. .ant-pro-sider.ant-layout-sider.ant-pro-sider-fixed {
  18. left: unset;
  19. }
  20. canvas {
  21. display: block;
  22. }
  23. body {
  24. text-rendering: optimizeLegibility;
  25. -webkit-font-smoothing: antialiased;
  26. -moz-osx-font-smoothing: grayscale;
  27. }
  28. ul,
  29. ol {
  30. list-style: none;
  31. }
  32. @media (max-width: 768px) {
  33. .ant-table {
  34. width: 100%;
  35. overflow-x: auto;
  36. &-thead > tr,
  37. &-tbody > tr {
  38. > th,
  39. > td {
  40. white-space: pre;
  41. > span {
  42. display: block;
  43. }
  44. }
  45. }
  46. }
  47. }
  48. input:-webkit-autofill {
  49. transition:background-color 5000s ease-in-out 0s;/*背景不显示*/
  50. -webkit-box-shadow: 0 0 0px 0px #fff inset;/*背景阴影设置*/
  51. -webkit-text-fill-color: #fff;/*input框字体颜色*/
  52. caret-color: #fff;/*改变光标的颜色*/
  53. }