blob: 047ea8d0a59381da01a805886d0660639b064502 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.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; }
}
|