aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/base/_animations.scss
blob: 903645f995bdfb8c991a1e11e5246059d7398d5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@keyframes pulse {
  from {
    transform: scale(1);
  }

  50% {
    transform: scale(0.8);
  }

  to {
    transform: scale(1);
  }
}