This repository has no description
0

Configure Feed

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

web/components: remove useless typography-small classes

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

+4 -4
+2 -2
web/src/lib/components/repo/RefSelector.svelte
··· 51 51 > 52 52 {#snippet footer()} 53 53 <div class="flex items-center gap-4 px-2 py-1.5"> 54 - <a href={resolve(`${base}/branches` as "/")} class="typography-paragraph-small"> View all branches </a> 55 - <a href={resolve(`${base}/tags` as "/")} class="typography-paragraph-small">View all tags</a> 54 + <a href={resolve(`${base}/branches` as "/")}> View all branches </a> 55 + <a href={resolve(`${base}/tags` as "/")}>View all tags</a> 56 56 </div> 57 57 {/snippet} 58 58 </Select>
+2 -2
web/src/lib/components/ui/Input.svelte
··· 69 69 {disabled} 70 70 aria-invalid={error} 71 71 aria-busy={loading} 72 - class="flex-1 bg-transparent typography-paragraph-small outline-none placeholder:text-foreground-placeholder disabled:cursor-not-allowed mt-px" 72 + class="flex-1 bg-transparent outline-none placeholder:text-foreground-placeholder disabled:cursor-not-allowed mt-px" 73 73 {...rest} 74 74 /> 75 75 {#if suffix} 76 - <span class="shrink-0 typography-paragraph-small text-foreground-muted select-none">{suffix}</span> 76 + <span class="shrink-0 text-foreground-muted select-none">{suffix}</span> 77 77 {/if} 78 78 {#if loading} 79 79 <Spinner class="size-4 shrink-0" />