Skip to content

Commit

Permalink
Fix 'read more' link
Browse files Browse the repository at this point in the history
  • Loading branch information
ewels committed Oct 3, 2024
1 parent ef73cdc commit 0b76dcf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions changelog/fusion_v2.4.4.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ tags: [fusion]
- Azure: Prefer Nextflow-provided SAS token for authentication
- Define a default exit code 174 on Fusion IO error

{/* truncate */}

## How to pin this version

```groovy
Expand Down
4 changes: 1 addition & 3 deletions src/theme/BlogPostItem/Footer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@ export default function BlogPostItemFooter() {
<footer className={clsx(styles.blogFooter, "row docusaurus-mt-lg")}>
{truncatedPost && (
<div
className={clsx('col text--right', {
'col--3': tagsExists,
})}>
className={styles.readMore}>
<ReadMoreLink blogPostTitle={title} to={metadata.permalink} />
</div>
)}
Expand Down
4 changes: 4 additions & 0 deletions src/theme/BlogPostItem/Footer/styles.module.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
.blogFooter {
border-bottom: 1px solid rgba(100,100,100,0.2);
}
.readMore {
padding: 0 1rem 1rem;
color: var(--brand-color);
}

0 comments on commit 0b76dcf

Please sign in to comment.