This commit is contained in:
cay 2026-03-29 11:08:56 +01:00
parent 2c9edad0cb
commit c447e58fa8

View File

@ -2,28 +2,28 @@ html,
body { body {
margin: 0; margin: 0;
padding: 0; padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
background: #0a0603; background: #0a0603;
overflow: hidden;
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
} }
.worldmap { .worldmap {
position: relative; position: relative;
width: 100vw; width: 2037px;
height: 100vh; height: 1018px;
overflow: hidden; flex-shrink: 0;
} }
.map-image { .map-image {
position: absolute; position: absolute;
top: 50%; top: 0;
left: 50%; left: 0;
transform: translate(-50%, -50%); width: 100%;
min-width: 100%; height: 100%;
min-height: 100%;
width: auto;
height: auto;
object-fit: cover; object-fit: cover;
} }