Skip to content

Commit

Permalink
fix: Add more space for solver name
Browse files Browse the repository at this point in the history
  • Loading branch information
Elscrux committed Sep 6, 2024
1 parent e2d9a33 commit 74b1cbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/solvers/Graph/SolverNodeContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ export interface SolverNodeContentProps {
export const SolverNodeContent = (props: SolverNodeContentProps) => {
return (
<VStack gap="0px">
<HStack align="start" maxW="10rem" justifyContent="space-between">
<HStack align="start" maxW="10rem" justifyContent="space-between" gap="0">
<Tooltip hasArrow label="Solver" placement="bottom">
<div>
<FaGears size="2rem" />
</div>
</Tooltip>
<Text padding=".5rem" fontWeight="semibold">
<Text padding=".25rem" fontWeight="semibold">
{props.solver.name}
</Text>

Expand Down

0 comments on commit 74b1cbb

Please sign in to comment.