Skip to content

Commit

Permalink
Merge pull request #1110 from harshita-2003/new
Browse files Browse the repository at this point in the history
style: back to top animated #1030
  • Loading branch information
JasonDsouza212 authored Jul 3, 2023
2 parents 93fb0d7 + b91f37d commit 0c9a89e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/styles/BackToTop.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,23 @@
cursor: pointer;
color: white;
background-color: #1f1f1f;
animation:animate 4s alternate infinite;
}

@keyframes animate{
0%,100%{
transform: translateY(0px);
}
50%{
transform: translateY(10px);
}
}

.backToTopButton:hover{
opacity:90%;
box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
}

.backToTopButton i {
font-size: 24px;
}
Expand Down

1 comment on commit 0c9a89e

@vercel
Copy link

@vercel vercel bot commented on 0c9a89e Jul 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

free-hit – ./

free-hit-git-main-jasondsouza212.vercel.app
free-hit-jasondsouza212.vercel.app
free-hit.vercel.app

Please sign in to comment.