Monorepo for Tangled tangled.org
3

Configure Feed

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

web: small fixups

- login bg fixed
- profile edit button icon-size fixed
- star button fill color fixed

Signed-off-by: oppiliappan <me@oppi.li>

author
oppiliappan
committer
dawn
date (Jul 27, 2026, 3:40 PM +0300) commit f95201ff parent a481422e
+3 -3
+1 -1
web/src/lib/components/profile/ProfileCard.svelte
··· 134 134 <div class="my-2 flex items-center gap-2"> 135 135 {#if isSelf} 136 136 <Button variant="default" class="w-full gap-2" onclick={() => (editing = true)}> 137 - <Pencil class="size-4" aria-hidden="true" /> 137 + <Pencil class="size-3" aria-hidden="true" /> 138 138 Edit 139 139 </Button> 140 140 {:else}
+1 -1
web/src/lib/components/repo/StarButton.svelte
··· 72 72 disabled={!relation.known} 73 73 onclick={toggle} 74 74 > 75 - <Star class={`size-4 shrink-0 ${starred ? "fill-current" : ""}`} aria-hidden="true" /> 75 + <Star class={`size-4 shrink-0 ${starred ? "[&_path]:fill-[currentColor]" : ""}`} aria-hidden="true" /> 76 76 <span>{starred ? "Unstar" : "Star"}</span> 77 77 </Button> 78 78 <Button
+1 -1
web/src/routes/+layout.svelte
··· 32 32 33 33 <div 34 34 class={isAuthShell 35 - ? "flex min-h-screen flex-col bg-background-default text-foreground-default" 35 + ? "flex min-h-screen flex-col bg-background-canvas text-foreground-default" 36 36 : isMarketingShell 37 37 ? "flex min-h-screen flex-col bg-gradient-to-b from-background-default to-background-canvas text-foreground-default" 38 38 : "flex min-h-screen flex-col bg-background-canvas text-foreground-default"}