style: always show scrollbar (#215)
* style: always show scrollbar * fix: hide header scrollbar in specific instances * hotfix: prettier fail * style: always show scrollbar * fix: hide header scrollbar in specific instances
This commit is contained in:
@@ -18,3 +18,24 @@
|
||||
cursor: move;
|
||||
}
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
background: transparent;
|
||||
}
|
||||
::-webkit-scrollbar-thumb {
|
||||
border: 3px solid #fff;
|
||||
border-radius: 7px;
|
||||
min-height: 40px;
|
||||
box-shadow: none;
|
||||
background: rgb(218, 220, 224);
|
||||
}
|
||||
:hover::-webkit-scrollbar-thumb,
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: rgb(189, 193, 198);
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:active {
|
||||
background: rgb(128, 134, 139);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user