-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add link back to homepage from documentation
- Loading branch information
Showing
2 changed files
with
61 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
--- | ||
import { logos } from "virtual:starlight/user-images"; | ||
import config from "virtual:starlight/user-config"; | ||
import type { Props } from "@astrojs/starlight/props"; | ||
const href = "/"; | ||
--- | ||
|
||
<span class="site-title sl-flex"> | ||
<a href="https://astronvim.com" class="sl-flex"> | ||
{ | ||
config.logo && logos.dark && ( | ||
<> | ||
<img | ||
class:list={{ "light:sl-hidden": !("src" in config.logo) }} | ||
alt={config.logo.alt} | ||
src={logos.dark.src} | ||
width={logos.dark.width} | ||
height={logos.dark.height} | ||
/> | ||
{/* Show light alternate if a user configure both light and dark logos. */} | ||
{!("src" in config.logo) && ( | ||
<img | ||
class="dark:sl-hidden" | ||
alt={config.logo.alt} | ||
src={logos.light?.src} | ||
width={logos.light?.width} | ||
height={logos.light?.height} | ||
/> | ||
)} | ||
</> | ||
) | ||
} | ||
</a> | ||
<span class:list={{ "sr-only": config.logo?.replacesTitle }}> | ||
<a {href} class="site-title">{config.title}</a> | ||
</span> | ||
</span> | ||
|
||
<style> | ||
.site-title { | ||
align-items: center; | ||
gap: var(--sl-nav-gap); | ||
font-size: var(--sl-text-h4); | ||
font-weight: 600; | ||
color: var(--sl-color-text-accent); | ||
text-decoration: none; | ||
white-space: nowrap; | ||
} | ||
img { | ||
height: calc(var(--sl-nav-height) - 2 * var(--sl-nav-pad-y)); | ||
width: auto; | ||
max-width: 100%; | ||
object-fit: contain; | ||
object-position: 0 50%; | ||
} | ||
</style> |