Skip to content

Commit

Permalink
fix: size position
Browse files Browse the repository at this point in the history
  • Loading branch information
talboren committed Nov 18, 2024
1 parent f86c401 commit b14ff83
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions keep-ui/app/topology/ui/map/service-node.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,12 @@ export function ServiceNode({ data, selected }: NodeProps<ServiceNodeType>) {
onMouseLeave={() => setShowDetails(false)}
>
{data.category && (
<div className="absolute -top-3 -right-1 text-gray-400">
<div className="absolute top-2 right-2 text-gray-400">
<Image
className="inline-block"
alt={data.category}
height={16}
width={16}
height={24}
width={24}
title={data.category}
src={`/icons/${data.category.toLowerCase()}-icon.png`}
/>
Expand Down

0 comments on commit b14ff83

Please sign in to comment.