Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Staging to Production - Jan 19, 2025 #276

Merged
merged 3 commits into from
Jan 18, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/containers/Event/Event.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const EventContainer = async ({
return (
<div>
<div className='container'>
<div className='relative mx-auto my-12 h-96 w-full overflow-hidden rounded-2xl shadow-xl'>
<div className='relative mx-auto my-12 h-[60vh] w-full overflow-hidden rounded-2xl shadow-xl'>
<Image
src={cover_image ?? event1}
alt={name}
Expand Down
3 changes: 2 additions & 1 deletion frontend/src/sections/EventSection/EventCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ const EventCard: React.FC<EventProps> = ({
className='rounded-t-lg'
style={{
maxWidth: '100%',
height: 'auto',
height: '100%',
objectFit: 'cover',
}}
/>
</div>
Expand Down
Loading