Skip to content

Commit 77ff151

Browse files
docs: bump theme to v0.3.0 for code block fix, clean up homepage header
Code blocks: - Bumped @sentry/starlight-theme from ^0.2.0 to ^0.3.0 — v0.2.0 had --ve-code-bg: #111 which made code blocks darker than intended. v0.3.0 uses #141419, matching the theme playground reference. Homepage header: - Removed the 'Sentry CLI' text from the homepage header — now shows just the wordmark SVG logo like production does. The text next to the logo icon looked redundant.
1 parent 693ccab commit 77ff151

3 files changed

Lines changed: 4 additions & 12 deletions

File tree

docs/bun.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"dependencies": {
1111
"@astrojs/starlight": "^0.39.2",
1212
"@sentry/astro": "^10.38.0",
13-
"@sentry/starlight-theme": "^0.2.0",
13+
"@sentry/starlight-theme": "^0.3.0",
1414
"astro": "^6.3.5",
1515
"sharp": "^0.33.5",
1616
"shiki": "^3.21.0"

docs/src/components/Header.astro

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ const base = baseUrl.endsWith("/") ? baseUrl : baseUrl + "/";
2727
<div class="header sentry-header header-homepage">
2828
<div class="title-wrapper sl-flex">
2929
<a href={base} class="site-title sl-flex">
30-
<img src={`${base}glyph.svg`} alt="" class="homepage-logo" />
31-
<span class="homepage-title">Sentry CLI</span>
30+
<img src={`${base}wordmark-light.svg`} alt="Sentry CLI" class="homepage-logo" />
3231
</a>
3332
</div>
3433
<div class="sentry-header-actions sl-flex print:hidden">
@@ -65,13 +64,6 @@ const base = baseUrl.endsWith("/") ? baseUrl : baseUrl + "/";
6564
width: auto;
6665
}
6766

68-
.homepage-title {
69-
font-family: var(--sl-font);
70-
font-size: 1.25rem;
71-
font-weight: 700;
72-
color: var(--ve-text, #fafafa);
73-
}
74-
7567
.header-nav-link {
7668
color: #fff !important;
7769
text-decoration: none;

0 commit comments

Comments
 (0)