Created
November 30, 2021 20:18
-
-
Save huysentruitw/c82fe903a543673860715d2d5a94b6dd to your computer and use it in GitHub Desktop.
UpdateAvailableDetector.razor.css for medium article about Blazor WASM PWA
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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