From aab9a91bbacb84093cb5f15ca3e483c5ed9850fe Mon Sep 17 00:00:00 2001 From: Nikola Stojanovic <68916411+dzonidoo@users.noreply.github.com> Date: Thu, 20 Jun 2024 11:58:30 +0200 Subject: [PATCH] Fix wire labels gap and bg color (#961) --- assets/styles/labels.scss | 2 +- assets/wire/components/WireLabel.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assets/styles/labels.scss b/assets/styles/labels.scss index f2248b979..c561412a9 100644 --- a/assets/styles/labels.scss +++ b/assets/styles/labels.scss @@ -104,7 +104,7 @@ $flex-align: ( color: white; } &.label-wire--press-release { - background-color: var(--label-color-bg-press-release); + background-color: var(--label-color-bg-wire-press-release); border-color: var(--label-color-bg-wire-press-release); color: white; } diff --git a/assets/wire/components/WireLabel.tsx b/assets/wire/components/WireLabel.tsx index afd5cbf34..d43f56c7c 100644 --- a/assets/wire/components/WireLabel.tsx +++ b/assets/wire/components/WireLabel.tsx @@ -14,7 +14,7 @@ export default function WireLabel({item}: IProps) { return ( wireItemSubjects.length > 0 ? ( -
+
{wireItemSubjects.map(subject => { const classes = classNames('label label--fill label--rounded', { [`label-wire--${subject.code}`]: subject.code,