Skip to content

Commit

Permalink
fix(web): Fix padding between avatar and alias
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastinez committed Nov 18, 2024
1 parent 5ccce43 commit 870f073
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/NodeId.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<div class="avatar-alias">
<Link
styleHoverState
style="display: flex; gap: 5px; align-items: center;"
style="display: flex; gap: 0.375rem; align-items: center;"
route={{ resource: "users", did: nodeId, baseUrl }}>
<Avatar variant="small" {nodeId} />
{#if alias}
Expand Down
4 changes: 1 addition & 3 deletions src/views/repos/Cob/Assignees.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,7 @@
<div class="header">Assignees</div>
<div class="body">
{#each assignees as { id, alias }}
<div>
<NodeId {baseUrl} nodeId={id} {alias} />
</div>
<NodeId {baseUrl} nodeId={id} {alias} />
{:else}
<div class="txt-missing no-assignees">No assignees</div>
{/each}
Expand Down

0 comments on commit 870f073

Please sign in to comment.