refs #888 Override scrollbar color in SideMenu

This commit is contained in:
AkiraFukushima 2019-04-20 00:33:38 +09:00
parent 8fdd104629
commit d85f884079
1 changed files with 13 additions and 0 deletions

View File

@ -330,5 +330,18 @@ export default {
border-radius: 0 4px 4px 0;
background-color: var(--theme-global-header-color);
}
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.4);
border-radius: 10px;
}
}
</style>