Skip to content

Commit

Permalink
fix(suite): Prevent Add label changing transaction design on hover (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
hstastna authored and Hilda Stastna committed Jul 29, 2024
1 parent 86a13b1 commit cfe5d48
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,6 @@ const ActionButton = styled(Button)<{ $isValueVisible?: boolean; $isVisible?: bo
margin-left: ${({ $isValueVisible, $isVisible, isLoading }) =>
$isValueVisible || !$isVisible || isLoading ? '12px' : '4px'};
visibility: ${({ $isVisible }) => ($isVisible ? 'visible' : 'hidden')};
/* hack to keep button in place to prevent vertical jumping (if used display: none) */
width: ${({ $isVisible }) => ($isVisible ? 'auto' : '0')};
`;

// @TODO this shouldn't be Button
Expand Down

0 comments on commit cfe5d48

Please sign in to comment.