fixed the padding on the maps and updated the drawer styling
This commit is contained in:
parent
1e1152b563
commit
5c6be7c850
5 changed files with 11 additions and 8 deletions
|
|
@ -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 &&
|
||||
|
|
|
|||
|
|
@ -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 &&
|
||||
|
|
|
|||
|
|
@ -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 &&
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue