make pagination more compact and centered

This commit is contained in:
Phillip Thelen 2024-11-08 12:21:44 +01:00
parent 9acd2963f7
commit 8490e6d45c

View File

@ -89,10 +89,10 @@
>
«
</button>
<span class="page-info">
Page {currentPage} of {totalPages}
<div class="page-info">
<span>Page {currentPage} of {totalPages}</span>
<span class="results-info">({totalResults} processes)</span>
</span>
</div>
<button
class="btn-page"
disabled={currentPage === totalPages}
@ -109,6 +109,7 @@
</button>
</div>
</div>
<div class="toolbar-spacer"></div>
<div class="column-toggle">
<button
@ -297,8 +298,13 @@
font-size: 12px;
color: var(--subtext0);
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
flex-shrink: 0;
}
.page-info span {
display: block;
}
.results-info {