Browse Source

fix(player): add max-height to modals for smaller screens

pull/260/head
Jip Fr 3 years ago
parent
commit
0794558338
  1. 1
      src/components/popout/FloatingView.tsx

1
src/components/popout/FloatingView.tsx

@ -29,6 +29,7 @@ export function FloatingView(props: Props) { @@ -29,6 +29,7 @@ export function FloatingView(props: Props) {
data-floating-page={props.show ? "true" : undefined}
style={{
height: props.height ? `${props.height}px` : undefined,
maxHeight: "70vh",
width: props.width ? width : undefined,
}}
>

Loading…
Cancel
Save