Skip to content

Commit

Permalink
fix: re-layout overflow content, closes #700
Browse files Browse the repository at this point in the history
  • Loading branch information
felixmosh committed Mar 12, 2024
1 parent ad4dd78 commit dd09f28
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
overflow: hidden;
position: relative;
background: #fff;
height: 100%;
}

.preWrapper {
padding: 40px 0.5rem 0.5rem;
max-height: 100%;
overflow: auto;
height: 330px;
}

.preWrapper ol {
Expand Down
1 change: 1 addition & 0 deletions packages/ui/src/components/JobCard/JobCard.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
display: flex;
margin-top: 1rem;
width: 100%;
overflow: hidden;
}

.sideInfo {
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/components/JobCard/JobCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export const JobCard = ({
)}
</div>

<Collapsible.Content>
<Collapsible.Content asChild={true}>
<div className={s.details}>
<div className={s.sideInfo}>
<Timeline job={job} status={status} />
Expand Down

0 comments on commit dd09f28

Please sign in to comment.