1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-09-18 14:25:32 -04:00

fix arrow function inconsistency

This commit is contained in:
2021-12-13 07:07:09 -05:00
parent 0bc30f87d8
commit 964c4ef543
8 changed files with 47 additions and 57 deletions

View File

@@ -1,18 +1,19 @@
@use "../abstracts/themes";
.wave {
.wave,
.beat {
display: inline-block;
}
.wave {
animation: wave 5s infinite;
animation-delay: 1s;
transform-origin: 65% 80%;
will-change: transform;
}
.beat {
display: inline-block;
animation: beat 10s infinite; // 6 bpm, call 911 if you see this please.
animation-delay: 7.5s; // offset from wave animation
will-change: transform;
}
@keyframes wave {