icone spin rotation

This commit is contained in:
deltacms 2024-04-26 08:27:25 +02:00
parent 335bd4c960
commit 340fbf826c
1 changed files with 11 additions and 1 deletions

View File

@ -19,7 +19,17 @@
animation: spin 2s infinite linear;
display: inline-block;
}
@-moz-keyframes spin, @-webkit-keyframes spin, @-o-keyframes spin, @-ms-keyframes spin, @keyframes spin {
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(359deg);
}
}
@-moz-keyframes spin, @-webkit-keyframes spin, @-o-keyframes spin, @-ms-keyframes spin {
0% {
transform: rotate(0deg);
}