We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27542eb commit 39718e2Copy full SHA for 39718e2
packages/suite/src/components/suite/labeling/MetadataLabeling/MetadataLabeling.tsx
@@ -65,6 +65,7 @@ const ActionButton = styled(Button)<{ $isValueVisible?: boolean; $isVisible?: bo
65
margin-left: ${({ $isValueVisible, $isVisible, isLoading }) =>
66
$isValueVisible || !$isVisible || isLoading ? '12px' : '4px'};
67
visibility: ${({ $isVisible }) => ($isVisible ? 'visible' : 'hidden')};
68
+ width: ${({ $isVisible }) => ($isVisible ? 'auto' : '0')};
69
`;
70
71
// @TODO this shouldn't be Button
0 commit comments