Files
2026-04-28 21:14:25 +03:00

23 lines
429 B
SCSS

//
// Effects
// --------------------------------------------------
// Ripple effect (mostly for buttons usage)
.click-ripple {
display: block;
position: absolute;
background: rgba(255, 255, 255, .5);
border-radius: 100%;
transform: scale(0);
&.animate {
animation: click-ripple .9s ease-out;
}
}
@keyframes click-ripple {
100% {
opacity: 0;
transform: scale(3);
}
}