Skip to content

Instantly share code, notes, and snippets.

@huysentruitw
Created November 30, 2021 20:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save huysentruitw/c82fe903a543673860715d2d5a94b6dd to your computer and use it in GitHub Desktop.
Save huysentruitw/c82fe903a543673860715d2d5a94b6dd to your computer and use it in GitHub Desktop.
UpdateAvailableDetector.razor.css for medium article about Blazor WASM PWA
.floating-update-button {
position: fixed;
right: 2rem;
bottom: 2rem;
padding: 1rem 1.5rem;
animation: fadein 2s ease-out;
}
@keyframes fadein {
from { right: -100%; }
to { right: 2rem; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment