Skip to content

Commit 870f073

Browse files
committed
fix(web): Fix padding between avatar and alias
1 parent 5ccce43 commit 870f073

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/components/NodeId.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<div class="avatar-alias">
2929
<Link
3030
styleHoverState
31-
style="display: flex; gap: 5px; align-items: center;"
31+
style="display: flex; gap: 0.375rem; align-items: center;"
3232
route={{ resource: "users", did: nodeId, baseUrl }}>
3333
<Avatar variant="small" {nodeId} />
3434
{#if alias}

src/views/repos/Cob/Assignees.svelte

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,7 @@
4848
<div class="header">Assignees</div>
4949
<div class="body">
5050
{#each assignees as { id, alias }}
51-
<div>
52-
<NodeId {baseUrl} nodeId={id} {alias} />
53-
</div>
51+
<NodeId {baseUrl} nodeId={id} {alias} />
5452
{:else}
5553
<div class="txt-missing no-assignees">No assignees</div>
5654
{/each}

0 commit comments

Comments
 (0)