Skip to content

Commit

Permalink
make everything a little bit brighter
Browse files Browse the repository at this point in the history
  • Loading branch information
Highfire1 committed Dec 4, 2024
1 parent b72768f commit a1068ba
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/app/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default async function Hero() {
src={selectedImage}
fill={true}
alt="Image of Langara College campus."
className="brightness-[.3] object-cover"
className="brightness-50 object-cover"
/>
</div>

Expand Down
4 changes: 2 additions & 2 deletions frontend/src/app/events/EventItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,12 @@ export default function EventItem({ event, past = false }: EventItemProps) {
alt={event.event_name}
fill={true}
sizes="(max-width: 768px) 800px, (max-width: 1200px) 800px, 800px"
className='rounded object-cover brightness-[.3]'
className='rounded object-cover brightness-50'
/>
</div>


<div className="fixed max-w-[220px] min-w-full p-2 z-10 backdrop-brightness-[.5] pointer-events-none top-[0px]">
<div className="fixed max-w-[220px] min-w-full p-2 z-10 backdrop-brightness-50 pointer-events-none top-[0px]">
<h2 className="text-xl pb-1 pointer-events-auto w-fit">{event.event_name}</h2>
<p className="text-xs pointer-events-auto w-fit">{event.event_date}</p>
<p className="text-xs pointer-events-auto w-fit">{event.location}</p>
Expand Down

0 comments on commit a1068ba

Please sign in to comment.