Skip to content

Commit

Permalink
fix(suite): Fix labeling issue on switch device
Browse files Browse the repository at this point in the history
  • Loading branch information
jvaclavik committed Dec 11, 2024
1 parent 5efac5a commit ee3fa47
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ const ActionButton = styled(Button)<{ $isValueVisible?: boolean; $isVisible?: bo
margin-left: ${({ $isValueVisible, $isVisible, isLoading }) =>
$isValueVisible || !$isVisible || isLoading ? '12px' : '4px'};
visibility: ${({ $isVisible }) => ($isVisible ? 'visible' : 'hidden')};
width: ${({ $isVisible }) => ($isVisible ? 'auto' : '0')};
`;

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

0 comments on commit ee3fa47

Please sign in to comment.