web/UpdateNotification: fix position on mobile

This commit is contained in:
wukko 2025-05-23 22:39:41 +06:00
parent b21e66e942
commit c08352bda9
No known key found for this signature in database
GPG Key ID: 3E30B3F26C7B4AA2

View File

@ -97,13 +97,13 @@
@media screen and (max-width: 535px) { @media screen and (max-width: 535px) {
#update-notification { #update-notification {
bottom: calc(var(--sidebar-height-mobile) + 5px); bottom: calc(var(--sidebar-height-mobile) + 16px);
justify-content: center; justify-content: center;
} }
.update-button { .update-button {
transform: translateY(300px); transform: translateY(300px);
margin-right: var(--padding); margin: 0;
transition: transform 0.55s cubic-bezier(0.53, 0.05, 0.23, 1.15); transition: transform 0.55s cubic-bezier(0.53, 0.05, 0.23, 1.15);
} }
} }