Skip to content

Commit

Permalink
Add horizontal space between Export text
Browse files Browse the repository at this point in the history
  • Loading branch information
pshapiro4broad committed Nov 5, 2024
1 parent 0e8e708 commit b7747a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/data_search/DatasetExportButton.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const DatasetExportButton = (props) => {

const link = `${terraUrl}/#import-data?snapshotId=${snapshot.id}&format=tdrexport&tdrSyncPermissions=false`;

return <Link href={link} target="_blank" rel="noopener noreferrer" title={title} aria-label={title}>Export</Link>;
return <Link style={{marginRight: '5px'}} href={link} target="_blank" rel="noopener noreferrer" title={title} aria-label={title}>Export</Link>;
};

export default DatasetExportButton;

0 comments on commit b7747a8

Please sign in to comment.