mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
21 lines
384 B
SCSS
21 lines
384 B
SCSS
/* Resolve style conflicts between third-party plugins */
|
|
|
|
@keyframes #{$prefix}pulse {
|
|
from {
|
|
@include transform(scale3d(1, 1, 1));
|
|
}
|
|
|
|
50% {
|
|
@include transform(scale3d(1.05, 1.05, 1.05));
|
|
}
|
|
|
|
to {
|
|
@include transform(scale3d(1, 1, 1));
|
|
}
|
|
}
|
|
|
|
.animate__pulse {
|
|
-webkit-animation-name: #{$prefix}pulse !important;
|
|
animation-name: #{$prefix}pulse !important;
|
|
}
|