You've already forked AstralRinth
forked from didirus/AstralRinth
fix(frontend): remove fixed height from ManySelect (#2898)
* fix(frontend): remove fixed height from ManySelect Frontend development is not my passion, there might be a better fix. I've tested my changes in all places that I found using the chganed components (ManySelect, ScrollablePanel): - Changelog filters - Version filters - Download dialog - Search filters Fixes #2334 * Revert incorrect merge * fix merge conflict
This commit is contained in:
@@ -34,7 +34,7 @@
|
||||
"
|
||||
/>
|
||||
</div>
|
||||
<ScrollablePanel v-if="search" class="h-[17rem]">
|
||||
<ScrollablePanel v-if="search">
|
||||
<Button
|
||||
v-for="(option, index) in filteredOptions"
|
||||
:key="`option-${index}`"
|
||||
|
||||
@@ -100,5 +100,6 @@ function onScroll({ target: { scrollTop, offsetHeight, scrollHeight } }) {
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
position: relative;
|
||||
max-height: 19rem;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user