Skip to content

Commit

Permalink
fix rendering of placeholder key photo in run page
Browse files Browse the repository at this point in the history
  • Loading branch information
kne42 committed Dec 2, 2023
1 parent 50aa932 commit 1e59130
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export function RunHeader() {
title={run.name}
>
<div className="flex gap-sds-xxl p-sds-xl border-t-[3px] border-sds-gray-200">
<div className="max-w-[300px] max-h-[213px] overflow-clip rounded-sds-m flex-shrink-0">
<div className="max-w-[300px] max-h-[213px] grow overflow-clip rounded-sds-m flex-shrink-0">
{keyPhotoURL ? (
<Link to={keyPhotoURL}>
<KeyPhoto title={run.name} src={keyPhotoURL} />
Expand All @@ -100,7 +100,7 @@ export function RunHeader() {
)}
</div>

<div className="flex gap-sds-xxl flex-col lg:flex-row">
<div className="flex flex-1 gap-sds-xxl flex-col lg:flex-row">
<MetadataTable
title={i18n.tiltSeries}
data={[
Expand Down

0 comments on commit 1e59130

Please sign in to comment.