Added an animation to the play ui hourglass when a query is running

This commit is contained in:
Nir Peled 2022-04-01 19:24:14 -04:00
parent 97f29ac0fe
commit 4810936eaa

View File

@ -266,12 +266,25 @@
color: var(--null-color);
}
@keyframes hourglass-animation {
0% {
transform: rotate(-180deg);
}
50% {
transform: rotate(-180deg);
}
100% {
transform: none;
}
}
#hourglass
{
display: none;
padding-left: 1rem;
margin-left: 1rem;
font-size: 110%;
color: #888;
animation: hourglass-animation 1s linear infinite;
}
#check-mark