From 2c9edad0cb6b1463cd36018f6b88ec8345d1645f Mon Sep 17 00:00:00 2001 From: cay Date: Sun, 29 Mar 2026 11:06:59 +0100 Subject: [PATCH] xgm --- public/css/global.css | 1 - public/css/launcher.css | 26 ++++++++++++++++++++++++-- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/public/css/global.css b/public/css/global.css index f104094..9560153 100644 --- a/public/css/global.css +++ b/public/css/global.css @@ -18,5 +18,4 @@ body { margin: 0; - font-size: 22px; } diff --git a/public/css/launcher.css b/public/css/launcher.css index deb5405..3983fdb 100644 --- a/public/css/launcher.css +++ b/public/css/launcher.css @@ -1,8 +1,30 @@ +html, +body { + margin: 0; + padding: 0; + width: 100%; + height: 100%; + overflow: hidden; + background: #0a0603; +} + .worldmap { position: relative; + width: 100vw; + height: 100vh; + overflow: hidden; +} - width: 2037px; - height: 1018px; +.map-image { + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + min-width: 100%; + min-height: 100%; + width: auto; + height: auto; + object-fit: cover; } .map-overlay {