global.less 598 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. }