@eventcatalog/core 2.8.1 → 2.8.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/package.json
CHANGED
|
@@ -118,7 +118,7 @@ const badges = [getBadge(), ...contentBadges, ...getSpecificationBadges()];
|
|
|
118
118
|
<!-- <main class="flex py-8 sm:px-8 docs-layout"> -->
|
|
119
119
|
<div class="flex min-h-screen docs-layout">
|
|
120
120
|
<main class="flex-1 w-full lg:pr-10 md:pt-4">
|
|
121
|
-
<div class="border-b border-gray-200 flex justify-between items-start py-4 md:pb-
|
|
121
|
+
<div class="border-b border-gray-200 flex justify-between items-start py-4 md:pb-2">
|
|
122
122
|
<div>
|
|
123
123
|
<h2 class="text-2xl md:text-4xl font-bold">
|
|
124
124
|
{props.data.name}
|
|
@@ -130,7 +130,7 @@ const badges = [getBadge(), ...contentBadges, ...getSpecificationBadges()];
|
|
|
130
130
|
<div class="flex flex-wrap py-2 pt-4">
|
|
131
131
|
{badges.map((badge: any) => {
|
|
132
132
|
return (
|
|
133
|
-
<a href={badge.url || '#'}>
|
|
133
|
+
<a href={badge.url || '#'} class="pb-2">
|
|
134
134
|
<span
|
|
135
135
|
id={badge.id || ''}
|
|
136
136
|
class={`text-sm font-light text-gray-500 px-2 py-1 rounded-md mr-2 bg-${badge.backgroundColor}-100 space-x-1 border border-${badge.backgroundColor}-200 text-${badge.textColor}-800 flex items-center ${badge.class ? badge.class : ''} `}
|