0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-18 01:22:43 +00:00

pagination controls don't reset search

This commit is contained in:
Víctor Losada Hernández
2024-02-15 13:45:31 +01:00
parent ffdbe46a23
commit 2658831e83
2 changed files with 79 additions and 36 deletions

View File

@@ -117,6 +117,16 @@ body {
color: white;
}
&.searching {
display: grid;
place-items: center;
color: white;
h3.searchAnim {
animation: trailingDots 2s ease infinite;
}
}
.totalBrews {
position: fixed;
bottom: 0;
@@ -215,3 +225,17 @@ body {
}
}
}
@keyframes trailingDots {
0%,32% {
clip-path:inset(0 66% 0 0);
}
33%, 65% {
clip-path:inset(0 33% 0 0);
}
66%,100% {
clip-path:inset(0 0% 0 0);
}
}