@brizy/ui
Version:
React elements in Brizy style
22 lines (18 loc) • 338 B
text/less
@import url("../../variables");
@animation-pulsate: ~"@{BRZ_PREFIX}-pulsate";
.@{BRZ_PREFIX}-animated--pulsate {
animation-name: @animation-pulsate;
}
@keyframes @animation-pulsate {
0% {
transform: scale(0.1, 0.1);
opacity: 0;
}
50% {
opacity: 1;
}
100% {
transform: scale(1.2, 1.2);
opacity: 0;
}
}