Skip to content

Commit

Permalink
CSS tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
joao-vasconcelos committed Nov 15, 2023
1 parent 5cfe15f commit a43425d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function JobsExplorerTableRowItem({ jobData }) {
<div className={styles.column}>{jobData.render_path.substring(0, 30) || '(empty)'}</div>
<div className={styles.column}>{jobData.render_format || '(empty)'}</div>

<div className={styles.column}>{jobData.filename || '(empty)'}</div>
<div className={styles.column}>{jobData.filename.substring(0, 30) || '(empty)'}</div>
</JobsExplorerTableRowContainer>
</div>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
align-items: center;
justify-content: flex-start;
padding: 10px;
text-align: center;
text-align: left;
opacity: 0.5;
transition: all 100ms ease;
}
Expand Down

0 comments on commit a43425d

Please sign in to comment.