Skip to content

Commit

Permalink
Fix pop out height (#736)
Browse files Browse the repository at this point in the history
  • Loading branch information
streamer45 authored May 14, 2024
1 parent dccb5e3 commit 9c5c4fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/components/expanded_view/component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,7 @@ export default class ExpandedView extends React.PureComponent<Props, State> {
...this.style.screenContainer,

// Account for when we display an alert banner.
maxHeight: `calc(100vh - ${this.shouldRenderAlertBanner() ? 180 : 140}px)`,
maxHeight: `calc(100vh - ${this.shouldRenderAlertBanner() ? 164 : 124}px)`,
}}
>
<StyledMediaController
Expand Down

0 comments on commit 9c5c4fb

Please sign in to comment.