site.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
  2. /* stylelint-disable no-duplicate-selectors */
  3. /* stylelint-disable */
  4. /* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
  5. html,
  6. body,
  7. #root,
  8. #app,
  9. app {
  10. height: 100%;
  11. }
  12. .colorWeak {
  13. filter: invert(80%);
  14. }
  15. .ant-layout {
  16. min-height: 100vh;
  17. }
  18. canvas {
  19. display: block;
  20. }
  21. body {
  22. text-rendering: optimizeLegibility;
  23. -webkit-font-smoothing: antialiased;
  24. -moz-osx-font-smoothing: grayscale;
  25. }
  26. ul,
  27. ol {
  28. list-style: none;
  29. }
  30. @media (max-width: 480px) {
  31. .ant-table {
  32. width: 100%;
  33. overflow-x: auto;
  34. }
  35. .ant-table-thead > tr > th,
  36. .ant-table-tbody > tr > th,
  37. .ant-table-thead > tr > td,
  38. .ant-table-tbody > tr > td {
  39. white-space: pre;
  40. }
  41. .ant-table-thead > tr > th > span,
  42. .ant-table-tbody > tr > th > span,
  43. .ant-table-thead > tr > td > span,
  44. .ant-table-tbody > tr > td > span {
  45. display: block;
  46. }
  47. }
  48. @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  49. body .ant-design-pro > .ant-layout {
  50. min-height: 100vh;
  51. }
  52. }