Skip to content
Snippets Groups Projects
Unverified Commit ed8e5907 authored by Anton Kulyk's avatar Anton Kulyk Committed by GitHub
Browse files

Fix Browse Data section items padding (#20224)

* Fix EntityItem padding

* Remove margin
parent 3bc379fa
No related branches found
No related tags found
No related merge requests found
......@@ -190,9 +190,6 @@ const EntityItem = ({
selected={selected}
disabled={disabled}
onToggleSelected={onToggleSelected}
style={{
marginRight: "16px",
}}
/>
<div className="overflow-hidden">
......
......@@ -44,7 +44,7 @@ export const EntityIconWrapper = styled(IconButtonWrapper)`
export const EntityItemWrapper = styled.div`
display: flex;
align-items: center;
padding: ${props => getItemPadding(props.variant)}
padding: ${props => getItemPadding(props.variant)};
color: ${props =>
props.disabled ? color("text-medium") : color("text-dark")};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment