diff --git a/src/app-layout/runtime-drawer/index.tsx b/src/app-layout/runtime-drawer/index.tsx index dffc27083e..e816e9266e 100644 --- a/src/app-layout/runtime-drawer/index.tsx +++ b/src/app-layout/runtime-drawer/index.tsx @@ -8,6 +8,8 @@ import { sortByPriority } from '../../internal/plugins/helpers/utils'; import { AppLayoutProps } from '../interfaces'; import { ActiveDrawersContext } from '../utils/visibility-context'; +import styles from './styles.css.js'; + export interface DrawersLayout { global: Array; localBefore: Array; @@ -46,7 +48,7 @@ function RuntimeDrawerWrapper({ mountContent, unmountContent, id }: RuntimeConte visibilityChangeCallback.current?.(isVisible); }, [isVisible]); - return
; + return
; } const mapRuntimeConfigToDrawer = ( diff --git a/src/internal/plugins/helpers/styles.scss b/src/app-layout/runtime-drawer/styles.scss similarity index 100% rename from src/internal/plugins/helpers/styles.scss rename to src/app-layout/runtime-drawer/styles.scss