Skip to content

Instantly share code, notes, and snippets.

@gmcusaro
Created November 8, 2021 19:51
Show Gist options
  • Save gmcusaro/db0c06e143d004ace1a8a281fd5ba84e to your computer and use it in GitHub Desktop.
Save gmcusaro/db0c06e143d004ace1a8a281fd5ba84e to your computer and use it in GitHub Desktop.
Rectangle spinner
.spinner {
height: 36px;
width: 36;
background-color: #ffffff;
animation: flip 1s linear infinite;
}
@keyframes flip {
50% {
transform: rotateX(180deg);
}
100% {
transform: rotateX(180deg) rotateY(180deg);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment