@eventcatalog/core 2.14.1 → 2.14.2
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
package/bin/dist/eventcatalog.js
CHANGED
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
const { title } = Astro.props;
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
-
<li class="mb-8 ml-6 w-full xl:max-w-[50%]">
|
|
5
|
+
<li class="mb-8 ml-6 w-full xl:max-w-[50%] step">
|
|
6
6
|
<div class="flex items-center mb-4">
|
|
7
7
|
<span class="step-number absolute flex items-center justify-center w-6 h-6 bg-primary/80 rounded-md -left-3 text-white">
|
|
8
8
|
<div></div>
|
|
@@ -23,3 +23,13 @@ const { title } = Astro.props;
|
|
|
23
23
|
});
|
|
24
24
|
});
|
|
25
25
|
</script>
|
|
26
|
+
|
|
27
|
+
<style is:global>
|
|
28
|
+
.step a {
|
|
29
|
+
color: #4b5563;
|
|
30
|
+
text-decoration: underline;
|
|
31
|
+
&:hover {
|
|
32
|
+
color: #b977f9;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
</style>
|