@astrojs/starlight 0.30.5 → 0.30.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @astrojs/starlight
2
2
 
3
+ ## 0.30.6
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2722](https://github.com/withastro/starlight/pull/2722) [`0b206d3`](https://github.com/withastro/starlight/commit/0b206d3a23f0876146dc17f5e507984362917696) Thanks [@techfg](https://github.com/techfg)! - Fixes display of long site title on mobile
8
+
9
+ - [#2762](https://github.com/withastro/starlight/pull/2762) [`7ab1576`](https://github.com/withastro/starlight/commit/7ab157639da62fdc6b444b0280ad4c9d5ee4872f) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Prevents the header title from being translated by automatic translation systems.
10
+
3
11
  ## 0.30.5
4
12
 
5
13
  ### Patch Changes
@@ -45,6 +45,7 @@ const shouldRenderSearch =
45
45
  /* Avoid clipping focus ring around link inside title wrapper. */
46
46
  padding: 0.25rem;
47
47
  margin: -0.25rem;
48
+ min-width: 0;
48
49
  }
49
50
 
50
51
  .right-group,
@@ -29,7 +29,7 @@ const { siteTitle, siteTitleHref } = Astro.props;
29
29
  </>
30
30
  )
31
31
  }
32
- <span class:list={{ 'sr-only': config.logo?.replacesTitle }}>
32
+ <span class:list={{ 'sr-only': config.logo?.replacesTitle }} translate="no">
33
33
  {siteTitle}
34
34
  </span>
35
35
  </a>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@astrojs/starlight",
3
- "version": "0.30.5",
3
+ "version": "0.30.6",
4
4
  "description": "Build beautiful, high-performance documentation websites with Astro",
5
5
  "keywords": [
6
6
  "docs",