chore: list layout scrollbar improvement (#3933)

This commit is contained in:
Anmol Singh Bhatia 2024-03-11 21:12:59 +05:30 committed by GitHub
parent e3ac075ee2
commit 9c29ad1a28
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

View File

@ -123,7 +123,10 @@ const GroupByList: React.FC<IGroupByList> = (props) => {
const isGroupByCreatedBy = group_by === "created_by";
return (
<div ref={containerRef} className="vertical-scrollbar scrollbar-lg relative h-full w-full overflow-auto">
<div
ref={containerRef}
className="vertical-scrollbar scrollbar-lg relative h-full w-full overflow-auto vertical-scrollbar-margin-top-md"
>
{groups &&
groups.length > 0 &&
groups.map(

View File

@ -602,6 +602,9 @@ div.web-view-spinner div.bar12 {
.horizontal-scrollbar::-webkit-scrollbar-corner {
background-color: transparent;
}
.vertical-scrollbar-margin-top-md::-webkit-scrollbar-track {
margin-top: 44px;
}
/* scrollbar sm size */
.scrollbar-sm::-webkit-scrollbar {