Skip to content

Commit

Permalink
Fix checksum style
Browse files Browse the repository at this point in the history
  • Loading branch information
aminick committed Oct 9, 2021
1 parent 84c0452 commit a46d695
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions components/guides/flexfarmer/FlexfarmerDownloadLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ const FlexfarmerDownloadInfoBox = styled.div`

const Checksum = styled.span`
display: inline-block;
min-width: 590px;
color: var(--primary);
word-break: break-all;
`;

interface DownloadInfo {
Expand Down Expand Up @@ -119,9 +119,8 @@ export const FlexfarmerDownloadLink: React.FC<{
</div>
</FlexfarmerDownloadInfoBox>
<FlexfarmerDownloadInfoBox>
<div>
SHA-256 Checksum: <Checksum>{checksum}</Checksum>
</div>
<span>SHA-256 Checksum:</span>
<Checksum>{checksum}</Checksum>
</FlexfarmerDownloadInfoBox>
</FlexfarmerDownloadLinkWrapper>
);
Expand Down

0 comments on commit a46d695

Please sign in to comment.