globals.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. @tailwind base;
  2. @tailwind components;
  3. @tailwind utilities;
  4. body {
  5. margin: 0;
  6. font-family: var(--joy-fontFamily-body, var(--joy-Josefin Sans, sans-serif));
  7. line-height: var(--joy-lineHeight-md, 1.5);
  8. --antd-primary-color: #0069fe;
  9. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  10. -webkit-appearance: none;
  11. }
  12. .light {
  13. color: #333;
  14. background-color: #f7f7f7;
  15. }
  16. .dark {
  17. color: #f7f7f7;
  18. background-color: #151622;
  19. }
  20. .dark-sub-bg {
  21. background-color: rgb(35, 38, 44);
  22. }
  23. .ant-btn-primary {
  24. background-color: var(--antd-primary-color);
  25. }
  26. .ant-pagination .ant-pagination-prev * {
  27. color: var(--antd-primary-color) !important;
  28. }
  29. .ant-pagination .ant-pagination-next * {
  30. color: var(--antd-primary-color) !important;
  31. }
  32. .ant-pagination .ant-pagination-item a {
  33. color: rgb(176, 176, 191);
  34. }
  35. .ant-pagination .ant-pagination-item.ant-pagination-item-active {
  36. background-color: var(--antd-primary-color) !important;
  37. }
  38. .ant-pagination .ant-pagination-item.ant-pagination-item-active a {
  39. color: white !important;
  40. }
  41. .scrollbar-default::-webkit-scrollbar {
  42. display: block;
  43. width: 6px;
  44. }
  45. .bg-button-gradient {
  46. background-image: linear-gradient(to right,rgb(114, 136, 250),rgb(114, 136, 250)) !important;
  47. }
  48. .ant-btn-primary {
  49. background-image: linear-gradient(to right, rgb(114, 136, 250), rgb(114, 136, 250)) !important;
  50. }
  51. .ant-segmented-item-selected {
  52. background-color: rgb(114, 136, 250)!important;
  53. }
  54. ::-webkit-scrollbar {
  55. display: none;
  56. }
  57. ::-webkit-scrollbar-track {
  58. background: #f1f1f1;
  59. }
  60. ::-webkit-scrollbar-thumb {
  61. background: #888;
  62. }
  63. ::-webkit-scrollbar-thumb:hover {
  64. background: #555;
  65. }
  66. .dark :where(.css-dev-only-do-not-override-18iikkb).ant-tabs .ant-tabs-tab-btn {
  67. color: white;
  68. }
  69. :where(.css-dev-only-do-not-override-18iikkb).ant-form-item .ant-form-item-label>label {
  70. height: 36px;
  71. }
  72. @keyframes rotate {
  73. to {
  74. transform: rotate(360deg);
  75. }
  76. }
  77. .react-flow__panel {
  78. display: none !important;
  79. }
  80. .rc-md-editor .editor-container>.section {
  81. border-right: none !important;
  82. }
  83. pre {
  84. width: 100%;
  85. overflow: auto;
  86. white-space: pre-wrap;
  87. padding-left: 0.5rem;
  88. }
  89. table {
  90. display: block;
  91. width: 100%;
  92. table-layout: fixed;
  93. }
  94. #home-container .ant-tabs-tab-active {
  95. font-size: 16px;
  96. }
  97. #home-container .ant-tabs-tab {
  98. font-size: 16px;
  99. }
  100. #home-container .ant-card-body {
  101. padding: 12px 24px;
  102. }
  103. .rc-md-editor {
  104. height: inherit;
  105. }
  106. .hover-underline-gradient {
  107. z-index: -1!important;
  108. }