main.css 330 B

12345678910111213141516171819
  1. @import './base.css';
  2. #app {
  3. max-width: 100%;
  4. height: 100%;
  5. font-weight: normal;
  6. }
  7. /* scroll bar */
  8. ::-webkit-scrollbar {
  9. width: 8px;
  10. height: 8px;
  11. /* background-color: white; */
  12. }
  13. ::-webkit-scrollbar-thumb {
  14. background-color: var(--color-scrollbar-thumb);
  15. border-radius: 20px;
  16. box-shadow: inset 0 0 0 white;
  17. }