Skip to content

Commit

Permalink
fix: avatars style
Browse files Browse the repository at this point in the history
  • Loading branch information
JeangelLF committed Oct 25, 2024
1 parent f8c43e9 commit 56fb6d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/widgets/AppointmentTile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ const AppointmentTile: React.FC<Props> = ({
<div className="flex">
{avatars?.map((type, i) =>
type === 'student' ? (
<StudentAvatar className="size-5" key={`student-${i}`} />
<StudentAvatar className="size-5 mx-[-3px]" key={`student-${i}`} />
) : (
<PupilAvatar className="size-5" key={`pupil-${i}`} />
<PupilAvatar className="size-5 mx-[-3px]" key={`pupil-${i}`} />
)
)}
</div>
Expand Down

0 comments on commit 56fb6d5

Please sign in to comment.