This commit is contained in:
Cay 2026-03-17 12:03:06 +00:00
parent fbc661b84e
commit a53b779e95

View File

@ -34,8 +34,8 @@ body {
.building-popup {
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
top: 50px;
transform: translateX(-50%);
width: 900px;
max-width: 90vw;
@ -713,12 +713,12 @@ body {
@keyframes popupFade {
from {
opacity: 0;
transform: translate(-50%, -40%);
transform: translateX(-50%) translateY(-20px);
}
to {
opacity: 1;
transform: translate(-50%, -50%);
transform: translateX(-50%) translateY(0);
}
}