Skip to content

Commit

Permalink
fix(keyframes): unused keyframes
Browse files Browse the repository at this point in the history
  • Loading branch information
CarloBar1 committed Sep 17, 2024
1 parent c42eec6 commit 96c792d
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions src/autocomplete/styles.css.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
import { tagged as css } from '@neovici/cosmoz-utils';

export default css`
@keyframes rotateAnimation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
:host {
display: block;
position: relative;
Expand Down Expand Up @@ -62,12 +53,16 @@ export default css`
slot {
display: contents !important;
}
@keyframes rotating {
100% {
@keyframes rotateAnimation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.spinner {
border-radius: 50%;
width: 22px;
Expand Down

0 comments on commit 96c792d

Please sign in to comment.