Skip to content

Commit

Permalink
fix: double scroll bar (#113)
Browse files Browse the repository at this point in the history
* fix: double scroll bar

* chore: remove unused style
  • Loading branch information
bobbyg603 authored Feb 20, 2025
1 parent b26fead commit f5dc736
Showing 1 changed file with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@
}

.dropdown-menu-inner {
z-index: 1000;
display: flex;
flex-direction: column;
max-height: 231px;
min-height: 76px;
height: auto;
}

Expand Down Expand Up @@ -66,12 +65,6 @@
}
}

.scroll-container {
width: 100%;
min-height: 30px;
overflow-y: auto;
}

icon-all,
icon-none,
icon-checkmark {
Expand Down Expand Up @@ -106,9 +99,15 @@ icon-plus {
}
}

.scroll-container {
width: 100%;
min-height: 30px;
}

.virtual-scroll-viewport {
display: block;
width: 100%;
min-width: 100%;
max-height: 200px;
height: 100%;
min-height: 40px;
}
}

0 comments on commit f5dc736

Please sign in to comment.