Skip to content

Commit

Permalink
feat(input): fixed source details first element extra space
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdulWahab3181 committed Jul 24, 2024
1 parent 1c20e5c commit 7a8102a
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const Default = () => {
</StyledImageWrapper>
) : null}

<StyledContent grow={1} justify="flex-start" pt={hasImage ? 0 : 8} shrink={1}>
<StyledContent grow={1} justify="flex-start" shrink={1}>
<Flex ml={24} mt={20} style={{ width: 'fit-content' }}>
<TypeBadge type={selectedNode.node_type || ''} />
</Flex>
Expand Down Expand Up @@ -76,7 +76,6 @@ const StyledContent = styled(Flex)`
overflow: auto;
width: 100%;
flex-grow: 1;
padding-top: 16px;
`

const StyledWrapper = styled(Flex)`
Expand Down

0 comments on commit 7a8102a

Please sign in to comment.