@astrojs/starlight 0.23.3 → 0.23.4
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 +6 -0
- package/package.json +1 -1
- package/user-components/Steps.astro +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @astrojs/starlight
|
|
2
2
|
|
|
3
|
+
## 0.23.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1955](https://github.com/withastro/starlight/pull/1955) [`15ef1f4b`](https://github.com/withastro/starlight/commit/15ef1f4bdbf7174134121f4bbdf82ca3903c802a) Thanks [@HiDeoo](https://github.com/HiDeoo)! - Reverts a [change](https://github.com/withastro/starlight/pull/1948) to prevent a numbering issue with the `<Steps>` component in future versions of Chrome.
|
|
8
|
+
|
|
3
9
|
## 0.23.3
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -23,8 +23,6 @@ const { html } = processSteps(content);
|
|
|
23
23
|
padding-bottom: 1px;
|
|
24
24
|
/* Prevent bullets from touching in short list items. */
|
|
25
25
|
min-height: calc(var(--bullet-size) + var(--bullet-margin));
|
|
26
|
-
/* Enforce style containment so that nested lists CSS counters are scoped to the contained element. */
|
|
27
|
-
contain: style;
|
|
28
26
|
}
|
|
29
27
|
.sl-steps > li + li {
|
|
30
28
|
/* Remove margin between steps. */
|