index.css 2.0 KB

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