Skip to content

Instantly share code, notes, and snippets.

@seanmodd
Created August 19, 2021 18:59
Show Gist options
  • Save seanmodd/8af5783e32ca8d56018968af2fd8a68b to your computer and use it in GitHub Desktop.
Save seanmodd/8af5783e32ca8d56018968af2fd8a68b to your computer and use it in GitHub Desktop.
CSS for ScollToTop.js
.scroll {
position: fixed;
bottom: 0.5rem;
right: 0.5rem;
animation: fadeIn 700ms ease-in-out 1s both;
cursor: pointer;
font-size: 40px;
margin-right: 2rem;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment