diff --git a/app/components/ContextMenu/index.tsx b/app/components/ContextMenu/index.tsx index 7d29d0ead..ae3938d62 100644 --- a/app/components/ContextMenu/index.tsx +++ b/app/components/ContextMenu/index.tsx @@ -245,6 +245,7 @@ export const Background = styled(Scrollable)` padding: 6px; min-width: 180px; min-height: 44px; + max-height: 75vh; pointer-events: all; font-weight: normal; @@ -258,6 +259,7 @@ export const Background = styled(Scrollable)` transform-origin: ${(props: BackgroundProps) => props.rightAnchor ? "75%" : "25%"} 0; max-width: ${(props: BackgroundProps) => props.maxWidth ?? 276}px; + max-height: 100vh; background: ${(props: BackgroundProps) => props.theme.menuBackground}; box-shadow: ${(props: BackgroundProps) => props.theme.menuShadow}; `};