Skip to content

Commit

Permalink
fix(DatasetActionButtons): fix top alignment with the CitationBlock
Browse files Browse the repository at this point in the history
  • Loading branch information
MellyGray committed Oct 5, 2023
1 parent d0cade8 commit 6685508
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.group {
display: flex;
width: 100%;
margin: 0.5rem 0;
}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ export function DatasetActionButtons({ dataset }: DatasetActionButtonsProps) {
<PublishDatasetMenu dataset={dataset} />
<SubmitForReviewButton dataset={dataset} />
<EditDatasetMenu dataset={dataset} />
<LinkDatasetButton dataset={dataset} />
<ButtonGroup>
<LinkDatasetButton dataset={dataset} />
</ButtonGroup>
</ButtonGroup>
)
}

0 comments on commit 6685508

Please sign in to comment.