@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
@@ -1,5 +1,11 @@
1
1
  # @eventcatalog/core
2
2
 
3
+ ## 2.8.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 591e06f: chore(core): fixed css issues with badges on pages
8
+
3
9
  ## 2.8.1
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "url": "https://github.com/event-catalog/eventcatalog.git"
7
7
  },
8
8
  "type": "module",
9
- "version": "2.8.1",
9
+ "version": "2.8.2",
10
10
  "publishConfig": {
11
11
  "access": "public"
12
12
  },
@@ -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-6">
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 : ''} `}