diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 3282372..2703ccc 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -28,7 +28,19 @@ const darkTheme = createTheme({ styleOverrides: { root: { backdropFilter: 'blur(10px)', - backgroundColor: 'rgba(30, 30, 30, 0.9)', + backgroundColor: 'rgba(30, 30, 30, 0.9) !important', + '&.MuiTableContainer-root': { + backdropFilter: 'blur(10px)', + backgroundColor: 'rgba(30, 30, 30, 0.9) !important', + }, + }, + }, + }, + MuiTableCell: { + styleOverrides: { + root: { + backdropFilter: 'blur(10px)', + backgroundColor: 'rgba(30, 30, 30, 0.9) !important', }, }, }, diff --git a/frontend/src/components/EventAdmin.tsx b/frontend/src/components/EventAdmin.tsx index 8fd7144..bd34684 100644 --- a/frontend/src/components/EventAdmin.tsx +++ b/frontend/src/components/EventAdmin.tsx @@ -198,13 +198,9 @@ const EventAdmin: React.FC = () => { {rsvps.map((rsvp: RSVP) => ( {rsvp.name} - {rsvp.attending} + {rsvp.attending.charAt(0).toUpperCase() + rsvp.attending.slice(1)} - {rsvp.bringing_guests === 'yes' ? ( - `${rsvp.guest_count} - ${rsvp.guest_names}` - ) : ( - 'No' - )} + {rsvp.bringing_guests === 'yes' ? `${rsvp.guest_count} (${rsvp.guest_names})` : 'No'} {rsvp.items_bringing}