diff --git a/editor.planx.uk/src/@planx/components/ExternalPortal/Editor.tsx b/editor.planx.uk/src/@planx/components/ExternalPortal/Editor.tsx index 4030cdb4ab..dc8eece31e 100644 --- a/editor.planx.uk/src/@planx/components/ExternalPortal/Editor.tsx +++ b/editor.planx.uk/src/@planx/components/ExternalPortal/Editor.tsx @@ -148,7 +148,13 @@ const ExternalPortalForm: React.FC<{ role="status" aria-atomic={true} aria-live="polite" - ListboxProps={{ sx: { padding: 0 } }} + fullWidth + ListboxProps={{ + sx: (theme) => ({ + paddingY: 0, + backgroundColor: theme.palette.background.default, + }), + }} onChange={(_event, newValue: Flow) => { formik.setFieldValue("flowId", newValue.id); }}