Skip to content

Commit

Permalink
Center NodeBuds logo animation on mobile (#1060)
Browse files Browse the repository at this point in the history
* Update team-section.svelte

* Update Node Buds Logo Animation on mobile

---------

Co-authored-by: Ethan Davidson <31261035+EthanThatOneKid@users.noreply.github.com>
  • Loading branch information
26samaahmed and EthanThatOneKid authored Apr 14, 2024
1 parent 40668ce commit 6b14aef
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions src/routes/(site)/teams/team-section.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -277,17 +277,28 @@
animation-iteration-count: infinite;
animation-direction: alternate;
position: relative;
animation-timing-function: cubic-bezier(0, 0, 0, 0);
}
@keyframes slide {
0% {
left: -60px;
top: 0px;
}
33% {
left: -10px;
}
50% {
left: 0;
}
66% {
left: 10px;
}
100% {
left: 60px;
top: 0px;
}
}
Expand Down

0 comments on commit 6b14aef

Please sign in to comment.