Fix table pagination colors

This commit is contained in:
natsoni
2024-04-19 17:08:19 +02:00
parent 93919421ee
commit b865fa33f6
2 changed files with 16 additions and 2 deletions

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 {