fixed the padding on the maps and updated the drawer styling

This commit is contained in:
csawatzky 2025-04-23 15:26:03 -06:00
parent 1e1152b563
commit 5c6be7c850
5 changed files with 11 additions and 8 deletions

View file

@ -6,7 +6,7 @@ export default function AviationMap() {
const location = useLocation();
return (
<PageContainer>
<PageContainer padding={-1}>
{location.state !== undefined &&
location.state !== null &&
location.state.long !== undefined &&

View file

@ -6,7 +6,7 @@ export default function ConstructionSiteMap() {
const location = useLocation();
return (
<PageContainer>
<PageContainer padding={-1}>
{location.state !== undefined &&
location.state !== null &&
location.state.long !== undefined &&

View file

@ -5,7 +5,7 @@ import { useLocation } from "react-router";
export default function FieldMap() {
const location = useLocation();
return (
<PageContainer>
<PageContainer padding={-1}>
{location.state !== undefined &&
location.state !== null &&
location.state.long !== undefined &&