This repository has no description
0

Configure Feed

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

web/components: make RepoHeader buttons use inset shadow and proper size

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

author
eti
committer
dawn
date (Jul 31, 2026, 10:57 PM +0300) commit 79891e61 parent b22d0de9 change-id vxkwmtvl
+7 -7
+7 -7
web/src/lib/components/repo/RepoHeader.svelte
··· 72 72 <Button 73 73 href={resolve(`${base}/stars` as "/")} 74 74 variant="default" 75 - size="sm" 75 + insetShadow={true} 76 76 icon={Star} 77 77 title="Starred by" 78 78 > ··· 81 81 {/if} 82 82 83 83 <ButtonGroup> 84 - <Button href={resolve(`${base}/fork` as "/")} variant="default" size="sm" icon={GitFork}> 85 - Fork 86 - </Button> 87 84 <Button 88 - href={resolve(`${base}/forks` as "/")} 85 + href={resolve(`${base}/fork` as "/")} 89 86 variant="default" 90 - size="sm" 91 - title="Forked by" 87 + insetShadow={true} 88 + icon={GitFork} 92 89 > 90 + Fork 91 + </Button> 92 + <Button href={resolve(`${base}/forks` as "/")} variant="ghost" title="Forked by"> 93 93 {counts.forks} 94 94 </Button> 95 95 </ButtonGroup>