Table Pagination Button Alignment
I’m using the s-table component with pagination, but the pagination buttons are rendering left-aligned.
Current Code
<s-table
loading={navigation.state === "submitting" || navigation.state === "loading"}
paginate={pageInfo.hasNextPage || pageInfo.hasPreviousPage}
hasNextPage={pageInfo.hasNextPage}
hasPreviousPage={pageInfo.hasPreviousPage}
onNextPage={paginationHandlers.onNext}
onPreviousPage={paginationHandlers.onPrevious}
>
{/* table content */}
</s-table>
Screenshot
Questions
1. Is left-aligned pagination the intended behavior?
2. Is there a way to center-align the pagination buttons? (e.g., a specific property or CSS approach)
Expected Behavior
I would expect the pagination buttons to be centered below the table.
