Skip to content

Commit

Permalink
fix rows per page dropdown visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ezra-sg authored and donnyquixotic committed Jan 3, 2024
1 parent bd4bf8a commit 676480a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/evm/TableControls.vue
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ function changePageNumber(direction: 'next' | 'prev' | 'first' | 'last') {
@keypress.space.enter.prevent="showRowsPerPageDropdown = !showRowsPerPageDropdown"
>
<q-popup-proxy ref="rowsPerPagePopup" transition-show="scale" transition-hide="scale">
<q-list>
<q-list class="c-table-controls__rows-per-page-list">
<q-item v-for="size in rowsPerPageOptions" :key="size" class="cursor-pointer">
<q-item-section
tabindex="0"
Expand Down Expand Up @@ -179,5 +179,9 @@ function changePageNumber(direction: 'next' | 'prev' | 'first' | 'last') {
margin: unset;
}
}
&__rows-per-page-list {
background: $white;
}
}
</style>

0 comments on commit 676480a

Please sign in to comment.