Fix table pagination colors

This commit is contained in:
natsoni 2024-04-19 17:08:19 +02:00
parent 93919421ee
commit b865fa33f6
No known key found for this signature in database
GPG Key ID: C65917583181743B
2 changed files with 16 additions and 2 deletions

View File

@ -18,7 +18,7 @@
<br>
<ngb-pagination [collectionSize]="assets.length" [rotate]="true" [pageSize]="itemsPerPage" [(page)]="page" (pageChange)="pageChange(page)" [maxSize]="paginationMaxSize" [boundaryLinks]="true" [ellipses]="ellipses"></ngb-pagination>
<ngb-pagination class="pagination-container" [collectionSize]="assets.length" [rotate]="true" [pageSize]="itemsPerPage" [(page)]="page" (pageChange)="pageChange(page)" [maxSize]="paginationMaxSize" [boundaryLinks]="true" [ellipses]="ellipses"></ngb-pagination>
<div class="clearfix"></div>
<br>

View File

@ -1180,9 +1180,23 @@ th {
margin: 0;
@media (min-width: 400px) {
width: auto;
padding-left: 5px;
}
}
.page-link {
background-color: var(--bg);
border: 1px solid var(--bg);
}
.page-link:hover {
background-color: var(--active-bg);
}
.page-item.active .page-link {
background-color: var(--tertiary);
border: 1px solid var(--tertiary);
}
.page-item.disabled .page-link {
background-color: var(--bg);
border: 1px solid var(--bg);
}
}
.fee-estimation-wrapper {