This repository has no description
0

Configure Feed

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

web/components: font color & size nits

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

+4 -4
+1 -1
web/src/lib/components/comment/CommentBox.svelte
··· 75 75 </div> 76 76 {:else} 77 77 <div class="rounded-sm border border-border-default bg-background-default p-4 drop-shadow-xs"> 78 - <div class="pb-2 typography-paragraph-small text-foreground-subtle"> 78 + <div class="pb-2"> 79 79 <User handle={authorHandle} did={authorDid} /> 80 80 </div> 81 81 {@render editor()}
+1 -1
web/src/lib/components/repo/issues/IssueHeader.svelte
··· 11 11 <header class="pb-2"> 12 12 <h1 class="typography-heading-3 font-normal"> 13 13 {title} 14 - <span class="text-foreground-subtle">#{rkey}</span> 14 + <span class="text-foreground-muted">#{rkey}</span> 15 15 </h1> 16 16 </header>
+1 -1
web/src/lib/components/repo/issues/IssueInfoBar.svelte
··· 15 15 let { state, authorHandle, authorDid, createdAt, actions }: Props = $props(); 16 16 </script> 17 17 18 - <div class="flex flex-wrap items-center gap-x-1 gap-y-1.5 typography-paragraph-small text-foreground-subtle"> 18 + <div class="flex flex-wrap items-center gap-x-1 gap-y-1.5 typography-paragraph-small text-foreground-muted"> 19 19 <IssueStatePill {state} /> 20 20 21 21 <span class="ml-1 flex items-center gap-1">
+1 -1
web/src/lib/components/ui/Avatar.svelte
··· 32 32 /> 33 33 {:else} 34 34 <span 35 - class={`${size} flex shrink-0 items-center justify-center rounded-full border border-border-default bg-background-inset text-foreground-subtle ${className}`} 35 + class={`${size} flex shrink-0 items-center justify-center rounded-full border border-border-default bg-background-inset text-foreground-default ${className}`} 36 36 role={handle ? "img" : undefined} 37 37 aria-label={handle ? `${handle}'s avatar` : undefined} 38 38 aria-hidden={handle ? undefined : "true"}