Skip to content

Commit

Permalink
Fix wire labels gap and bg color (#961)
Browse files Browse the repository at this point in the history
  • Loading branch information
dzonidoo authored Jun 20, 2024
1 parent bd27a31 commit aab9a91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/styles/labels.scss
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion assets/wire/components/WireLabel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default function WireLabel({item}: IProps) {

return (
wireItemSubjects.length > 0 ? (
<div>
<div className='d-flex gap-2 flex-wrap'>
{wireItemSubjects.map(subject => {
const classes = classNames('label label--fill label--rounded', {
[`label-wire--${subject.code}`]: subject.code,
Expand Down

0 comments on commit aab9a91

Please sign in to comment.