| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #app {
- width: 100%;
- height: 100%;
- }
- // =================================
- // ==============scrollbar==========
- // =================================
- ::-webkit-scrollbar {
- width: 7px;
- height: 8px;
- }
- // ::-webkit-scrollbar-track {
- // background: transparent;
- // }
- ::-webkit-scrollbar-track {
- background-color: rgb(0 0 0 / 5%);
- }
- ::-webkit-scrollbar-thumb {
- background: rgb(0 0 0 60%);
- background-color: rgb(144 147 153 / 30%);
- border-radius: 2px;
- box-shadow: inset 0 0 6px rgb(0 0 0 / 20%);
- }
- ::-webkit-scrollbar-thumb:hover {
- background-color: var(--border-color);
- }
- // =================================
- // ==============nprogress==========
- // =================================
- #nprogress {
- pointer-events: none;
- .bar {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 99999;
- width: 100%;
- height: 2px;
- opacity: 0.75;
- }
- }
|