Skip to content

Commit

Permalink
Fixed button animation
Browse files Browse the repository at this point in the history
  • Loading branch information
godspeed-03 committed Jan 23, 2024
1 parent 77c9f5c commit 67eea1f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/components/Button/Button.css
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
right: 0;
height: 100%;
width: 5px;
background: linear-gradient(to right,#00BBF9 , blue);
background: linear-gradient(to bottom,#00BBF9 , blue);
animation: animate2 2s linear infinite;
animation-delay: 1s;
}
Expand All @@ -62,7 +62,7 @@
right: 0;
width: 100%;
height: 3px;
background: linear-gradient(to right,#00BBF9 , blue);
background: linear-gradient(to left,#00BBF9 , blue);
animation: animate3 2s linear infinite;
}

Expand All @@ -81,7 +81,7 @@
left: 0;
height: 100%;
width: 5px;
background: linear-gradient(to right,#00BBF9 , blue);
background: linear-gradient(to top,#00BBF9 , blue);
animation: animate4 2s linear infinite;
animation-delay: 1s;
}
Expand Down
6 changes: 3 additions & 3 deletions src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ function Footer() {
<section className="content py-5 flex flex-col items-center gap-3">
<div className="flex items-center justify-center font-bold gap-2">
<a href="https://github.com/vigneshshettyin/Meetly" target="_blank">
<span className="text-white">Meetly</span>
<span className="text-black">Meetly</span>
</a>
<span className="text-black font-semibold">is maintained by</span>
<span className="text-white font-semibold">is maintained by</span>
<a href="https://github.com/vigneshshettyin" target="_blank">
<span className="text-white">vigneshshettyin. </span>
<span className="text-black">vigneshshettyin. </span>
</a>
</div>
<div className="github">
Expand Down

0 comments on commit 67eea1f

Please sign in to comment.