diff --git a/Composer/packages/client/src/components/MainContent.tsx b/Composer/packages/client/src/components/MainContent.tsx deleted file mode 100644 index b0e5370a60..0000000000 --- a/Composer/packages/client/src/components/MainContent.tsx +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright (c) Microsoft Corporation. -// Licensed under the MIT License. - -/** @jsx jsx */ -import { jsx, css } from '@emotion/core'; - -const contentTopMargin = 10; -const contentBottomMargin = 0; - -export const contentContainer = css` - display: flex; - height: calc(100vh - ${105 + contentTopMargin + contentBottomMargin}px); - margin-top: ${contentTopMargin}px; - margin-bottom: ${contentBottomMargin}px; - margin-left: 20px; -`; - -export const MainContent = (props: { children: Element }) => ( -