thin scroll

This commit is contained in:
Azgaar 2021-05-15 19:37:42 +03:00
parent 80d02ec220
commit f7aad4b658
2 changed files with 17 additions and 8 deletions

View file

@ -1250,17 +1250,26 @@ div.slider .ui-slider-handle {
display: none !important;
}
.burgs-table {
max-height: 75vh;
overflow-x: hidden;
overflow-y: scroll;
}
.table {
max-height: 75vh;
max-width: 75vw;
overflow-x: hidden;
overflow-y: auto;
scrollbar-width: thin;
}
.table::-webkit-scrollbar {
width: 6px;
background-color: transparent;
}
.table::-webkit-scrollbar-thumb {
background-color: #aaa;
border-radius: 6px;
}
.table::-webkit-scrollbar-thumb:hover {
background: #666;
}
.overflow {