Skip to content

Commit

Permalink
fix(view:page:prev-next): Add a bit of padding before the field label
Browse files Browse the repository at this point in the history
  • Loading branch information
SkepticMystic committed May 7, 2024
1 parent f10ede0 commit c889f43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/page_views/PrevNextView.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
>
{#each grouped_out_edges?.prev ?? [] as edge}
<div class="BC-next-prev-item flex gap-3 p-1 text-left">
<span class="BC-field">{edge.attr.field}</span>
<span class="BC-field pl-2">{edge.attr.field}</span>

<EdgeLink cls="grow" {edge} {plugin} {show_node_options} />
</div>
Expand All @@ -65,7 +65,7 @@
<div class="BC-next-prev-item flex gap-3 p-1 text-right">
<EdgeLink cls="grow" {edge} {plugin} {show_node_options} />

<span class="BC-field">{edge.attr.field}</span>
<span class="BC-field pr-2">{edge.attr.field}</span>
</div>
{/each}
</div>
Expand Down

0 comments on commit c889f43

Please sign in to comment.