diff --git a/apps/vs-code-react/src/app/overview/app.tsx b/apps/vs-code-react/src/app/overview/app.tsx index 0c768fe92fb..17810d7f668 100644 --- a/apps/vs-code-react/src/app/overview/app.tsx +++ b/apps/vs-code-react/src/app/overview/app.tsx @@ -2,6 +2,7 @@ import { QueryKeys } from '../../run-service'; import type { RunDisplayItem } from '../../run-service'; import type { RootState } from '../../state/store'; import { VSCodeContext } from '../../webviewCommunication'; +import './overview.less'; import { StandardRunService } from '@microsoft/designer-client-services-logic-apps'; import type { CallbackInfo } from '@microsoft/designer-client-services-logic-apps'; import { Overview, isRunError, mapToRunItem } from '@microsoft/designer-ui'; @@ -104,24 +105,26 @@ export const OverviewApp = () => { }, [error, runTriggerError]); return ( - { - vscode.postMessage({ - command: ExtensionCommand.loadRun, - item: run, - }); - }} - onRunTrigger={runTriggerCall} - onVerifyRunId={onVerifyRunId} - /> +
+ { + vscode.postMessage({ + command: ExtensionCommand.loadRun, + item: run, + }); + }} + onRunTrigger={runTriggerCall} + onVerifyRunId={onVerifyRunId} + /> +
); }; diff --git a/apps/vs-code-react/src/app/overview/overview.less b/apps/vs-code-react/src/app/overview/overview.less new file mode 100644 index 00000000000..1ac5a72d358 --- /dev/null +++ b/apps/vs-code-react/src/app/overview/overview.less @@ -0,0 +1,4 @@ +.msla-overview { + height: 100vh; + padding: 0 20px; +}