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