1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2025-01-30 17:15:16 +01:00

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

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>