Refactored layout components and styling: removed unused imports, adjusted positioning and padding for consistency.

This commit is contained in:
geoffsee
2025-07-16 21:21:16 -04:00
committed by Geoff Seemueller
parent a7ad06093a
commit 0183503425
5 changed files with 26 additions and 27 deletions

View File

@@ -37,7 +37,7 @@ const key =
function Map(props: { visible: boolean }) {
return (
/* Full-screen wrapper — fills the viewport and becomes the positioning context */
<Box w="100%" h="100vh" position="relative" overflow="hidden">
<Box position={'absolute'} top={0} w="100vw" h={'100vh'} overflow="hidden">
{/* Button bar — absolutely positioned inside the wrapper */}
<MapNext mapboxPublicKey={atob(key)} />