Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -427,10 +427,10 @@ export function IssueDetailActivitySection({
<img
src={group.actor?.avatarUrl}
alt={group.actor?.login}
className="size-5 shrink-0 rounded-full border border-border"
className="size-5 shrink-0 rounded-full border border-border self-start"
/>
) : (
<div className="flex size-5 shrink-0 items-center justify-center rounded-full border border-border bg-surface-1">
<div className="flex size-5 shrink-0 items-center justify-center rounded-full border border-border bg-surface-1 self-start">
{icon}
</div>
)}
Expand Down Expand Up @@ -475,10 +475,10 @@ export function IssueDetailActivitySection({
<img
src={event.actor?.avatarUrl}
alt={event.actor?.login}
className="size-5 shrink-0 rounded-full border border-border"
className="size-5 shrink-0 rounded-full border border-border self-start"
/>
) : (
<div className="flex size-5 shrink-0 items-center justify-center rounded-full border border-border bg-surface-1">
<div className="flex size-5 shrink-0 items-center justify-center rounded-full border border-border bg-surface-1 self-start">
{icon}
</div>
)}
Expand Down Expand Up @@ -859,7 +859,7 @@ function ActorMention({
<img
src={actor.avatarUrl}
alt={login}
className="inline-block size-3.5 rounded-full border border-border align-text-bottom self-start"
className="inline-block size-3.5 rounded-full border border-border align-text-bottom"
/>
)}
{login}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1643,7 +1643,7 @@ function ActivityTimeline({
<img
src={commit.author.avatarUrl}
alt={commit.author.login}
className="size-5 shrink-0 rounded-full border border-border"
className="size-5 shrink-0 rounded-full border border-border self-start"
/>
) : (
<div className="size-5 shrink-0 rounded-full bg-surface-2" />
Expand Down Expand Up @@ -1678,7 +1678,7 @@ function ActivityTimeline({
<img
src={mergedPr.mergedBy.avatarUrl}
alt={mergedPr.mergedBy.login}
className="size-5 shrink-0 rounded-full border border-border"
className="size-5 shrink-0 rounded-full border border-border self-start"
/>
) : (
<div className="size-5 shrink-0 rounded-full bg-surface-2" />
Expand Down Expand Up @@ -1741,10 +1741,10 @@ function ActivityTimeline({
<img
src={group.actor?.avatarUrl}
alt={group.actor?.login}
className="size-5 shrink-0 rounded-full border border-border"
className="size-5 shrink-0 rounded-full border border-border self-start"
/>
) : (
<div className="flex size-5 shrink-0 items-center justify-center rounded-full border border-border bg-surface-1">
<div className="flex size-5 shrink-0 items-center justify-center rounded-full border border-border bg-surface-1 self-start">
{icon}
</div>
)}
Expand Down Expand Up @@ -1966,10 +1966,10 @@ function TimelineEventRow({
<img
src={event.actor?.avatarUrl}
alt={event.actor?.login}
className="size-5 shrink-0 rounded-full border border-border"
className="size-5 shrink-0 rounded-full border border-border self-start"
/>
) : (
<div className="flex size-5 shrink-0 items-center justify-center rounded-full border border-border bg-surface-1">
<div className="flex size-5 shrink-0 items-center justify-center rounded-full border border-border bg-surface-1 self-start">
{icon}
</div>
)}
Expand Down Expand Up @@ -2684,7 +2684,7 @@ function ActorMention({
<img
src={actor.avatarUrl}
alt={login}
className="inline-block size-3.5 rounded-full border border-border align-text-bottom self-start"
className="inline-block size-3.5 rounded-full border border-border align-text-bottom"
/>
)}
{login}
Expand Down
Loading