index.css 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. }
  31. }
  32. .semi-layout {
  33. height: 100%;
  34. }
  35. .tableShow {
  36. display: revert;
  37. }
  38. .tableHiddle {
  39. display: none !important;
  40. }
  41. body::-webkit-scrollbar {
  42. display: none;
  43. }
  44. code {
  45. font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
  46. }
  47. .semi-navigation-vertical {
  48. /*display: flex;*/
  49. /*flex-direction: column;*/
  50. }
  51. .semi-navigation-item {
  52. margin-bottom: 0;
  53. }
  54. .semi-navigation-vertical {
  55. /*flex: 0 0 auto;*/
  56. /*display: flex;*/
  57. /*flex-direction: column;*/
  58. /*width: 100%;*/
  59. height: 100%;
  60. overflow: hidden;
  61. }
  62. .main-content {
  63. padding: 4px;
  64. height: 100%;
  65. }
  66. .small-icon .icon {
  67. font-size: 1em !important;
  68. }
  69. .custom-footer {
  70. font-size: 1.1em;
  71. }
  72. @media only screen and (max-width: 600px) {
  73. .hide-on-mobile {
  74. display: none !important;
  75. }
  76. }