site.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. .action {
  31. cursor: pointer;
  32. }
  33. @media (max-width: 480px) {
  34. .ant-table {
  35. width: 100%;
  36. overflow-x: auto;
  37. }
  38. .ant-table-thead > tr > th,
  39. .ant-table-tbody > tr > th,
  40. .ant-table-thead > tr > td,
  41. .ant-table-tbody > tr > td {
  42. white-space: pre;
  43. }
  44. .ant-table-thead > tr > th > span,
  45. .ant-table-tbody > tr > th > span,
  46. .ant-table-thead > tr > td > span,
  47. .ant-table-tbody > tr > td > span {
  48. display: block;
  49. }
  50. }
  51. @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  52. body .ant-design-pro > .ant-layout {
  53. min-height: 100vh;
  54. }
  55. }