Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
fix padding in group map
Browse files Browse the repository at this point in the history
  • Loading branch information
billowdev committed May 26, 2023
1 parent 6198555 commit 4675973
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/pages/group/map/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,7 @@ function GroupMapPage({ }: Props) {
return (
<MainLayout>
<Box sx={{flexGrow: 1 }}>


<Container maxWidth="lg" style={{ padding: 16 }}>
<Container maxWidth="lg">
<Grid container spacing={3}>
<Grid item xs={12}>
<Button
Expand Down Expand Up @@ -106,7 +104,7 @@ function GroupMapPage({ }: Props) {
<Box p={4}>


<Paper style={{ display: 'flex', justifyContent: 'center', alignItems: 'center', minHeight: '400px', padding: 16, background: 'none', boxShadow: 'none' }}>
<Paper style={{ display: 'flex', justifyContent: 'center', alignItems: 'center', minHeight: '400px', padding: 4, background: 'none', boxShadow: 'none' }}>
<GroupMap groupData={groupData.groupDataArray} />

</Paper>
Expand Down

0 comments on commit 4675973

Please sign in to comment.