Add a spinner for image captioning button

This commit is contained in:
SillyLossy
2023-03-02 21:11:18 +02:00
parent 4fcf49fde8
commit ba735abdcd
5 changed files with 42 additions and 12 deletions

View File

@@ -32,4 +32,16 @@
.mes img.img_extra {
max-width: 100%;
}
}
.spin {
animation-name: spin;
animation-duration: 2000ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes spin {
from {transform:rotate(0deg);}
to {transform:rotate(360deg);}
}