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

@@ -1,48 +1,57 @@
.invisible-a { .invisible-a {
color: inherit; color: inherit;
cursor: pointer; cursor: pointer;
} }
.invisible-a:hover { .invisible-a:hover {
color: inherit; color: inherit;
cursor: pointer; cursor: pointer;
} }
.blur-unless-hover { .blur-unless-hover {
filter: blur(5px); filter: blur(5px);
} }
.blur-unless-hover:hover { .blur-unless-hover:hover {
filter: none; filter: none;
} }
.blur { .blur {
filter: blur(5px); filter: blur(5px);
} }
div.wave { div.wave {
} }
div.wave .dot { div.wave .dot {
display: inline-block; display: inline-block;
width: 12px; width: 12px;
height: 12px; height: 12px;
border-radius: 50%; border-radius: 50%;
margin-right: 3px; margin-right: 3px;
background-color: var(--bs-body-color); background-color: var(--bs-body-color);
animation: wave 1.3s linear infinite; animation: wave 1.3s linear infinite;
} }
div.wave .dot:nth-child(2) { div.wave .dot:nth-child(2) {
animation-delay: -1.1s; animation-delay: -1.1s;
} }
div.wave .dot:nth-child(3) { div.wave .dot:nth-child(3) {
animation-delay: -0.9s; animation-delay: -0.9s;
} }
@keyframes wave { @keyframes wave {
0%, 60%, 100% { 0%,
transform: initial; 60%,
} 100% {
30% { transform: initial;
transform: translateY(-8px); }
} 30% {
} transform: translateY(-8px);
}
}
div.card-body
div.table-responsive
div.d-flex.justify-content-end
ul.pagination {
gap: 1.5rem;
}