From 242870b3e157a7fcf983e53b2466eebbd557d212 Mon Sep 17 00:00:00 2001 From: Moritz Date: Tue, 8 Aug 2023 17:08:54 +0200 Subject: [PATCH] pagination button gap fix --- Moonlight/wwwroot/assets/css/utils.css | 55 +++++++++++++++----------- 1 file changed, 32 insertions(+), 23 deletions(-) diff --git a/Moonlight/wwwroot/assets/css/utils.css b/Moonlight/wwwroot/assets/css/utils.css index 7ff64770..79320c85 100644 --- a/Moonlight/wwwroot/assets/css/utils.css +++ b/Moonlight/wwwroot/assets/css/utils.css @@ -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); - } -} \ No newline at end of file + 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; +}