summaryrefslogtreecommitdiff
path: root/src/components/shared/RotateIcon.module.scss
blob: 60748dee07269dc55224fca0866fd9ce34d9a2ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.rotate {
  display: inline-flex;
}
.isRotating {
  animation: rotating 3s infinite linear;
  animation-fill-mode: forwards;
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}