website/header: add some style to the GitHub button

This commit is contained in:
Adorian Doran
2025-10-04 17:07:32 +03:00
parent 4a01181110
commit 0d9e4a1aa2
2 changed files with 17 additions and 3 deletions

View File

@@ -60,9 +60,7 @@ export function Header(props: {repoStargazersCount: number}) {
<SocialButtons className="mobile-only" withText />
</nav>
<DownloadButton />
<div class="desktop-only">
<div class="desktop-only repository-button">
<SocialButton
name="GitHub"
iconSvg={githubIcon}
@@ -71,6 +69,8 @@ export function Header(props: {repoStargazersCount: number}) {
/>
</div>
<DownloadButton />
</div>
</header>
);