Skip to content

Commit

Permalink
Fix avatar in facility list
Browse files Browse the repository at this point in the history
  • Loading branch information
AdityaJ2305 committed Dec 26, 2024
1 parent 13f9f30 commit d95b8eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Facility/FacilityCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const FacilityCard = (props: {
<div className="h-full w-full grow">
<Link
href={`/facility/${facility.id}`}
className="group relative z-0 flex w-full min-w-[15%] items-center justify-center self-stretch min-[425px]:hidden"
className="group relative z-0 flex w-full min-w-[15%] items-center justify-center self-stretch min-[450px]:hidden"
>
<Avatar
name={facility.name || ""}
Expand All @@ -77,7 +77,7 @@ export const FacilityCard = (props: {
<div className="flex flex-col gap-5 sm:flex-row">
<Link
href={`/facility/${facility.id}`}
className="hidden h-[150px] min-h-[150px] w-[150px] min-w-[150px] sm:block"
className="hidden min-[450px]:block h-[150px] min-h-[150px] w-[150px] min-w-[150px]"
>
<Avatar
name={facility.name || ""}
Expand Down

0 comments on commit d95b8eb

Please sign in to comment.