This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

web/components: raise the repo panel metadata to the base size

the commits, branches and tags panels paired 16px primary lines with 12px
metadata, which read as an afterthought next to them. move the metadata to
text-paragraph-regular (14px, the base body size) so each panel keeps a 16/14
hierarchy instead of jumping 16/12.

Signed-off-by: eti <eti@eti.tf>

author
eti
committer
dawn
date (Jul 31, 2026, 10:57 PM +0300) commit 7c3ec8ca parent 1789fa54 change-id znrzwurl
+5 -3
+1 -1
web/src/lib/components/repo/BranchList.svelte
··· 34 34 > 35 35 <TimeAgo 36 36 value={branch.when} 37 - class="shrink-0 text-xs whitespace-nowrap text-foreground-subtle" 37 + class="shrink-0 text-paragraph-regular whitespace-nowrap text-foreground-subtle" 38 38 /> 39 39 {/if} 40 40 {#if branch.isDefault}
+3 -1
web/src/lib/components/repo/CommitList.svelte
··· 45 45 <p class="mt-1 pb-2 text-sm whitespace-pre-wrap text-foreground-muted">{commit.body}</p> 46 46 {/if} 47 47 48 - <div class="mt-2 flex flex-wrap items-center gap-2 text-xs text-foreground-subtle"> 48 + <div 49 + class="mt-2 flex flex-wrap items-center gap-2 text-paragraph-regular text-foreground-subtle" 50 + > 49 51 <a 50 52 href={resolve(`${base}/commit/${commit.hash}` as "/")} 51 53 title={commit.changeId ? `jj change id: ${commit.changeId}` : undefined}
+1 -1
web/src/lib/components/repo/TagList.svelte
··· 28 28 </div> 29 29 <div class="flex items-center gap-2"> 30 30 {#if tag.when} 31 - <TimeAgo value={tag.when} class="text-xs text-foreground-subtle" /> 31 + <TimeAgo value={tag.when} class="text-paragraph-regular text-foreground-subtle" /> 32 32 {/if} 33 33 {#if index === 0} 34 34 <Tag color="gray" class="font-mono">Latest</Tag>