index.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. body {
  2. margin: 0;
  3. padding-top: 55px;
  4. overflow-y: scroll;
  5. font-family: Lato, 'Helvetica Neue', Arial, Helvetica, "Microsoft YaHei", sans-serif;
  6. -webkit-font-smoothing: antialiased;
  7. -moz-osx-font-smoothing: grayscale;
  8. scrollbar-width: none;
  9. color: var(--semi-color-text-0) !important;
  10. background-color: var( --semi-color-bg-0) !important;
  11. height: 100%;
  12. }
  13. #root {
  14. height: 100%;
  15. }
  16. @media only screen and (max-width: 767px) {
  17. .semi-table-tbody, .semi-table-row, .semi-table-row-cell {
  18. display: block!important;
  19. width: auto!important;
  20. padding: 2px!important;
  21. }
  22. .semi-table-row-cell {
  23. border-bottom: 0!important;
  24. }
  25. .semi-table-tbody>.semi-table-row {
  26. border-bottom: 1px solid rgba(0,0,0,.1);
  27. }
  28. .semi-space {
  29. /*display: block!important;*/
  30. display: flex;
  31. flex-direction: row;
  32. flex-wrap: wrap;
  33. row-gap: 3px;
  34. column-gap: 10px;
  35. }
  36. }
  37. .semi-table-tbody > .semi-table-row > .semi-table-row-cell {
  38. padding: 16px 14px;
  39. }
  40. .channel-table {
  41. .semi-table-tbody > .semi-table-row > .semi-table-row-cell {
  42. padding: 16px 8px;
  43. }
  44. }
  45. .semi-layout {
  46. height: 100%;
  47. }
  48. .tableShow {
  49. display: revert;
  50. }
  51. .tableHiddle {
  52. display: none !important;
  53. }
  54. body::-webkit-scrollbar {
  55. display: none;
  56. }
  57. code {
  58. font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
  59. }
  60. .semi-navigation-vertical {
  61. /*display: flex;*/
  62. /*flex-direction: column;*/
  63. }
  64. .semi-navigation-item {
  65. margin-bottom: 0;
  66. }
  67. .semi-navigation-vertical {
  68. /*flex: 0 0 auto;*/
  69. /*display: flex;*/
  70. /*flex-direction: column;*/
  71. /*width: 100%;*/
  72. height: 100%;
  73. overflow: hidden;
  74. }
  75. .main-content {
  76. padding: 4px;
  77. height: 100%;
  78. }
  79. .small-icon .icon {
  80. font-size: 1em !important;
  81. }
  82. .custom-footer {
  83. font-size: 1.1em;
  84. }
  85. @media only screen and (max-width: 600px) {
  86. .hide-on-mobile {
  87. display: none !important;
  88. }
  89. }