File size: 184 Bytes
f2bee8a
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
@keyframes popIn {
    from {transform: scale(0.5)}
    to {transform: scale(1)}
}

.mic-img {
    margin: 10px;
    transform-origin: center;
    animation: popIn 0.1s ease-in-out;
}