Merge pull request #12 from Ryderjj89/dev

Padding and spacing fixes
This commit is contained in:
Joshua Ryder
2025-06-04 17:54:30 -04:00
committed by GitHub
2 changed files with 8 additions and 9 deletions

View File

@@ -170,7 +170,7 @@ const EventList: React.FC = () => {
)}
</CardContent>
<CardActions sx={{ justifyContent: 'space-between', px: 3, pb: 2 }}>
<Stack direction="row" spacing={1}>
<Stack direction="row" spacing={1} flexWrap="wrap">
{isEventOpen(event) && (
<Button
size="small"
@@ -187,6 +187,13 @@ const EventList: React.FC = () => {
>
View RSVPs
</Button>
<Button
size="small"
startIcon={<ContentCopyIcon />}
onClick={() => handleCopyLink(event)}
>
Copy RSVP Link
</Button>
</Stack>
<Button
size="small"
@@ -195,13 +202,6 @@ const EventList: React.FC = () => {
>
Manage
</Button>
<Button
size="small"
startIcon={<ContentCopyIcon />}
onClick={() => handleCopyLink(event)}
>
Copy RSVP Link
</Button>
</CardActions>
</Card>
</Grid>

View File

@@ -603,7 +603,6 @@ const RSVPForm: React.FC = () => {
},
MenuListProps: {
sx: {
paddingBottom: '60px', // Make space for the button
},
},
}}