Skip to content

Commit

Permalink
Truncate more aggressively on fusion, fix some styling
Browse files Browse the repository at this point in the history
  • Loading branch information
ewels committed Oct 3, 2024
1 parent 0b76dcf commit b680d3a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions changelog/fusion_v2.4.4.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ date: 2024-09-30
tags: [fusion]
---

Bugfix release to improve stability.

{/* truncate */}

## What's Changed

- Fix: move a folder with inner folders and big files
Expand All @@ -12,8 +16,6 @@ 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
2 changes: 1 addition & 1 deletion src/theme/BlogPostItem/Footer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default function BlogPostItemFooter() {
// BlogPost footer - list view
else {
return (
<footer className={clsx(styles.blogFooter, "row docusaurus-mt-lg")}>
<footer className={styles.blogFooter}>
{truncatedPost && (
<div
className={styles.readMore}>
Expand Down
3 changes: 2 additions & 1 deletion src/theme/BlogPostItem/Footer/styles.module.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
.blogFooter {
margin-top: 1rem;
border-bottom: 1px solid rgba(100,100,100,0.2);
}
.readMore {
padding: 0 1rem 1rem;
padding-bottom: 1rem;
color: var(--brand-color);
}
1 change: 1 addition & 0 deletions src/theme/BlogPostItem/Header/Info/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
display: flex;
align-items: center;
gap: 1em;
margin-bottom: 1rem;
}

.tag {
Expand Down

0 comments on commit b680d3a

Please sign in to comment.