Skip to content

Commit

Permalink
fix: improve sidebar min / max sizing (#25161)
Browse files Browse the repository at this point in the history
  • Loading branch information
daibhin authored Sep 24, 2024
1 parent 42e7acc commit dd4a03b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export function PlayerSidebar({
!sidebarOpen
? {}
: isVerticallyStacked
? { height: desiredSize ?? undefined, minHeight: 110 }
? { height: desiredSize ?? undefined, minHeight: 210 }
: { width: desiredSize ?? undefined }
}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@
.SessionRecordingPlayer__sidebar {
min-width: 100%;
max-width: 100%;
max-height: 60%;
}
}
}
Expand Down

0 comments on commit dd4a03b

Please sign in to comment.