pagination button gap fix

This commit is contained in:
Moritz 2023-08-08 17:08:54 +02:00
parent 30b6e45235
commit 242870b3e1

View file

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