Merge pull request #5573 from NadavTasher/feature/hide-scrollbars-in-card-details-and-lists

Hide scrollbars where they interrupt
This commit is contained in:
Lauri Ojansivu 2024-11-16 17:21:29 +02:00 committed by GitHub
commit 4ec0e63d99
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 8 additions and 0 deletions

View file

@ -90,6 +90,10 @@
transition: flex-basis 0.1s;
box-sizing: border-box;
}
.card-details::-webkit-scrollbar {
/* Hide scroll bars from middle of the screen */
display: none !important;
}
.card-details .mCustomScrollBox {
padding-left: 0;
}

View file

@ -148,6 +148,10 @@
overflow-y: auto;
padding: 5px 11px;
}
.list-body::-webkit-scrollbar {
/* Hide scroll bars from middle of the screen */
display: none !important;
}
.list-body .minicards {
flex-grow: 1;
flex-shrink: 0;