Skip to content

Commit

Permalink
fix(ui): set arrow into negative space in pod-terminal-viewer (argopr…
Browse files Browse the repository at this point in the history
…oj#13060)

Signed-off-by: Nicholas Orlowsky <nickorlow@nickorlow.com>
Co-authored-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com>
  • Loading branch information
2 people authored and tesla59 committed Dec 16, 2023
1 parent a6df335 commit b1f85b8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@
padding: 10px 20px;
}
}

.negative-space-arrow {
margin-left: -10px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ export const PodTerminalViewer: React.FC<PodTerminalViewerProps> = ({
onClickContainer(group, i, 'exec');
}
}}>
{container.name === containerName && <i className='fa fa-angle-right' />}
{container.name === containerName && <i className='fa fa-angle-right negative-space-arrow' />}
<span title={container.name}>{container.name}</span>
</div>
))}
Expand Down

0 comments on commit b1f85b8

Please sign in to comment.