blob: 32bff090bfc79ed8b995d6e4fb1794bad05c3788 (
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; }
}
|