_animations.scss
314 Bytes
.modal-content,
.focus-in {
animation: focus-in 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
@keyframes focus-in {
0% {
filter: blur(12px);
opacity: 0;
}
100% {
filter: blur(0px);
opacity: 1;
}
}
.simple-hover {
transition: all 0.5s;
&:hover {
transform: scale(1.1);
}
}