12 lines
171 B
SCSS
12 lines
171 B
SCSS
.stopIcon {
|
|
animation: zoomStopIcon 0.4s infinite alternate;
|
|
}
|
|
@keyframes zoomStopIcon {
|
|
0% {
|
|
transform: scale(0.8);
|
|
}
|
|
100% {
|
|
transform: scale(1.2);
|
|
}
|
|
}
|