123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. @import '~antd/es/style/themes/default.less';
  2. html,
  3. body,
  4. #root {
  5. height: 100%;
  6. }
  7. .colorWeak {
  8. filter: invert(80%);
  9. }
  10. .ant-layout {
  11. min-height: 100vh;
  12. }
  13. canvas {
  14. display: block;
  15. }
  16. body {
  17. text-rendering: optimizeLegibility;
  18. -webkit-font-smoothing: antialiased;
  19. -moz-osx-font-smoothing: grayscale;
  20. }
  21. ul,
  22. ol {
  23. list-style: none;
  24. }
  25. @media (max-width: @screen-xs) {
  26. .ant-table {
  27. width: 100%;
  28. overflow-x: auto;
  29. &-thead > tr,
  30. &-tbody > tr {
  31. > th,
  32. > td {
  33. white-space: pre;
  34. > span {
  35. display: block;
  36. }
  37. }
  38. }
  39. }
  40. }
  41. // 兼容IE11
  42. @media screen and(-ms-high-contrast: active), (-ms-high-contrast: none) {
  43. body .ant-design-pro > .ant-layout {
  44. min-height: 100vh;
  45. }
  46. }