index.css 1.2 KB

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