index.css 1.9 KB

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