Skip to content

Commit

Permalink
Add a color to the / separator in a path
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardo-forina committed Nov 15, 2024
1 parent f0679b6 commit a501aa9
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/ui/src/components/Path.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ export function Path({ path }: { path: string }) {
p
)}
{idx < list.length - 1 && (
<span className={"pf-v6-u-text-color-disabled"}>/</span>
<span
className={
"pf-v6-u-text-color-disabled pf-v6-u-text-color-status-danger"
}
>
/
</span>
)}
</Fragment>
)) as unknown as string
Expand Down

0 comments on commit a501aa9

Please sign in to comment.