diff --git a/apps/client/src/features/rundown/event-editor/CuesheetEventEditor.tsx b/apps/client/src/features/rundown/event-editor/CuesheetEventEditor.tsx index f6a75d159..8d92efc33 100644 --- a/apps/client/src/features/rundown/event-editor/CuesheetEventEditor.tsx +++ b/apps/client/src/features/rundown/event-editor/CuesheetEventEditor.tsx @@ -2,6 +2,7 @@ import { useEffect, useState } from 'react'; import { isOntimeEvent, OntimeEvent } from 'ontime-types'; import useRundown from '../../../common/hooks-query/useRundown'; +import { cx } from '../../../common/utils/styleUtils'; import EventEditor from './EventEditor'; @@ -37,7 +38,7 @@ export default function CuesheetEventEditor(props: CuesheetEventEditorProps) { } return ( -
+
); diff --git a/apps/client/src/features/rundown/event-editor/EventEditor.module.scss b/apps/client/src/features/rundown/event-editor/EventEditor.module.scss index aff43c3d3..599bcbcfc 100644 --- a/apps/client/src/features/rundown/event-editor/EventEditor.module.scss +++ b/apps/client/src/features/rundown/event-editor/EventEditor.module.scss @@ -1,8 +1,12 @@ .eventEditor { - max-height: 80vh; + max-height: 100%; display: flex; flex-direction: column; overflow-x: auto; + + &.inModal { + max-height: 80vh; + } } .content {