Merge pull request #257 from Moritz-Deiaco/main

pagination button gap fix
This commit is contained in:
Marcel Baumgartner
2023-08-08 17:14:07 +02:00
committed by GitHub

View File

@@ -39,10 +39,19 @@ div.wave .dot:nth-child(3) {
} }
@keyframes wave { @keyframes wave {
0%, 60%, 100% { 0%,
60%,
100% {
transform: initial; transform: initial;
} }
30% { 30% {
transform: translateY(-8px); transform: translateY(-8px);
} }
} }
div.card-body
div.table-responsive
div.d-flex.justify-content-end
ul.pagination {
gap: 1.5rem;
}