123456789101112131415161718192021222324252627 |
- /** @format */
- ::-webkit-scrollbar {
- width: 7px;
- height: 8px;
- }
- ::-webkit-scrollbar-track {
- background-color: rgb(0 0 0 / 5%);
- }
- ::-webkit-scrollbar-thumb {
- border-radius: 2px;
- background-color: rgb(144 147 153 / 30%);
- box-shadow: inset 0 0 6px rgb(0 0 0 / 20%);
- }
- ::-webkit-scrollbar-thumb:hover {
- background-color: rgb(144 147 153);
- }
- ::-webkit-scrollbar-corner {
- background-color: transparent;
- }
-
|