Skip to content

Commit

Permalink
fix: add macthing spacing to link icon
Browse files Browse the repository at this point in the history
  • Loading branch information
paulschreiber committed Mar 25, 2024
1 parent cef65c7 commit 92d4ced
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/sharedData/components/SharedDataEntryLink.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,15 @@ const SharedDataEntryLink = props => {
return (
<SharedDataEntryBase
sharedResource={sharedResource}
EntryTypeIcon={() => <LinkIcon />}
EntryTypeIcon={() => (
<LinkIcon
sx={{
marginTop: { xs: '0.6em', md: 'inherit' },
marginLeft: { xs: '-5px', md: 'inherit' },
paddingRight: { xs: '5px', md: 'inherit' },
}}
/>
)}
DownloadComponent={DownloadComponent}
info={domain}
deleteTooltip={t(toolTipKey, {
Expand Down

0 comments on commit 92d4ced

Please sign in to comment.