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:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user