| 12345678910111213141516171819 |
- @import './base.css';
- #app {
- max-width: 100%;
- height: 100%;
- font-weight: normal;
- }
- /* scroll bar */
- ::-webkit-scrollbar {
- width: 8px;
- height: 8px;
- /* background-color: white; */
- }
- ::-webkit-scrollbar-thumb {
- background-color: var(--color-scrollbar-thumb);
- border-radius: 20px;
- box-shadow: inset 0 0 0 white;
- }
|