diff --git a/packages/grafana-ui/src/components/Portal/Portal.tsx b/packages/grafana-ui/src/components/Portal/Portal.tsx index 1dd8e29b374..df94e4b9d92 100644 --- a/packages/grafana-ui/src/components/Portal/Portal.tsx +++ b/packages/grafana-ui/src/components/Portal/Portal.tsx @@ -1,4 +1,4 @@ -import { css, cx } from '@emotion/css'; +import { css } from '@emotion/css'; import { PropsWithChildren, useLayoutEffect, useRef } from 'react'; import * as React from 'react'; import ReactDOM from 'react-dom'; @@ -51,25 +51,27 @@ export function getPortalContainer() { /** @internal */ export function PortalContainer() { const styles = useStyles2(getStyles); - const isBodyScrolling = window.grafanaBootData?.settings.featureToggles.bodyScrolling; - return ( -
- ); + return ; } -const getStyles = (theme: GrafanaTheme2) => ({ - grafanaPortalContainer: css({ - position: 'fixed', - top: 0, - width: '100%', - zIndex: theme.zIndex.portal, - }), -}); +const getStyles = (theme: GrafanaTheme2) => { + const isBodyScrolling = window.grafanaBootData?.settings.featureToggles.bodyScrolling; + return { + grafanaPortalContainer: css( + isBodyScrolling + ? { + position: 'fixed', + top: 0, + width: '100%', + zIndex: theme.zIndex.portal, + } + : { + position: 'absolute', + width: '100%', + } + ), + }; +}; export const RefForwardingPortal = React.forwardRef