Skip to content

Commit 25e82bf

Browse files
committed
match template line spacing in loop rows
1 parent 6979e63 commit 25e82bf

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/ui/src/features/loops/components/LoopRow.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export function LoopRow({
5858
>
5959
<Flex align="center" gap="3" className="min-w-0">
6060
<RepeatIcon size={20} className="shrink-0 text-gray-11" />
61-
<Flex direction="column" className="min-w-0 gap-0.5">
61+
<Flex direction="column" gap="1" className="min-w-0">
6262
<Flex align="center" gap="2" className="min-w-0">
6363
<Text className="truncate font-medium text-[13px] text-gray-12">
6464
{loop.name}
@@ -72,7 +72,7 @@ export function LoopRow({
7272
</Text>
7373
) : null}
7474
{metadata.length > 0 ? (
75-
<Text className="text-(--accent-11) text-[11px] leading-snug">
75+
<Text className="mt-0.5 text-(--accent-11) text-[11px] leading-snug">
7676
{metadata.join(" · ")}
7777
</Text>
7878
) : null}

0 commit comments

Comments
 (0)