Skip to content

Commit b60eced

Browse files
committed
Fix event card label text styles to match
1 parent 2802e2c commit b60eced

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/lib/components/event/event-card.svelte

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
{@const href = getEventLinkHref(link)}
126126
{@const value = href.split('workflows/')?.[1] || href}
127127
<div class="flex items-start gap-4">
128-
<p class="min-w-56 text-sm text-secondary/80">
128+
<p class="min-w-56 text-sm font-medium text-secondary">
129129
{translate('nexus.link')}
130130
</p>
131131
<Copyable
@@ -141,7 +141,7 @@
141141
{#snippet eventNamespaceLink(link: ELink)}
142142
{@const href = routeForNamespace({ namespace: link.workflowEvent.namespace })}
143143
<div class="flex items-start gap-4">
144-
<p class="min-w-56 text-sm text-secondary/80">
144+
<p class="min-w-56 text-sm font-medium text-secondary">
145145
{translate('nexus.link-namespace')}
146146
</p>
147147
<Copyable
@@ -165,7 +165,7 @@
165165

166166
{#snippet eventSummary(value: Payload)}
167167
<div class="flex items-start gap-4">
168-
<p class="min-w-56 text-sm text-secondary/80">Summary</p>
168+
<p class="min-w-56 text-sm font-medium text-secondary">Summary</p>
169169
<p class="whitespace-pre-line">
170170
<MetadataDecoder
171171
{value}
@@ -182,7 +182,7 @@
182182
{@const codeBlockValue = getCodeBlockValue(value)}
183183
{@const stackTrace = getStackTrace(codeBlockValue)}
184184
<div>
185-
<p class="mb-1 min-w-56 text-sm text-secondary/80">
185+
<p class="mb-1 min-w-56 text-sm font-medium text-secondary">
186186
{format(key)}
187187
</p>
188188
{#if value?.payloads}
@@ -225,7 +225,7 @@
225225
</div>
226226
{#if stackTrace}
227227
<div>
228-
<p class="mb-1 min-w-56 text-sm text-secondary/80">
228+
<p class="mb-1 min-w-56 text-sm font-medium text-secondary">
229229
{translate('workflows.call-stack-tab')}
230230
</p>
231231
<CodeBlock
@@ -241,7 +241,7 @@
241241

242242
{#snippet link(key, value)}
243243
<div class="flex items-start gap-4">
244-
<p class="min-w-56 text-sm text-secondary/80">
244+
<p class="min-w-56 text-sm font-medium text-secondary">
245245
{format(key)}
246246
</p>
247247
<Copyable
@@ -261,7 +261,7 @@
261261

262262
{#snippet details(key, value)}
263263
<div class="flex items-start gap-4">
264-
<p class="min-w-56 text-sm text-secondary/80">
264+
<p class="min-w-56 text-sm font-medium text-secondary">
265265
{format(key)}
266266
</p>
267267
<p class="whitespace-pre-line break-all">

0 commit comments

Comments
 (0)