index.css 1.6 KB

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