Skip to content

Commit

Permalink
fix: restore line beneath page header (microsoft#7676)
Browse files Browse the repository at this point in the history
* Update Page.tsx

* Update BotProjectSettings.tsx
  • Loading branch information
beyackle committed May 7, 2021
1 parent c0f4218 commit af7bccf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
2 changes: 2 additions & 0 deletions Composer/packages/client/src/components/Page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import { jsx, css, SerializedStyles } from '@emotion/core';
import React, { useMemo } from 'react';
import { FontWeights, FontSizes } from 'office-ui-fabric-react/lib/Styling';
import { NeutralColors } from '@uifabric/fluent-theme';
import { Toolbar, IToolbarItem } from '@bfc/ui-shared';
import { useRecoilValue } from 'recoil';
import { Split, SplitMeasuredSizes } from '@geoffcox/react-splitter';
Expand Down Expand Up @@ -52,6 +53,7 @@ export const header = css`
flex-shrink: 0;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid ${NeutralColors.gray30};
label: PageHeader;
`;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,6 @@ import { BotProjectSettingsTabView } from './BotProjectsSettingsTabView';

// -------------------- Styles -------------------- //

const header = css`
padding: 5px 20px;
display: flex;
justify-content: space-between;
label: PageHeader;
border-bottom: 1px solid silver;
`;

const container = css`
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -134,7 +126,6 @@ const BotProjectSettings: React.FC<RouteComponentProps<{ projectId: string; skil
<Page
useDebugPane
data-testid="BotProjectsSettings"
headerStyle={header}
mainRegionName={formatMessage('Bot projects settings list View')}
navLinks={navLinks}
navRegionName={formatMessage('Bot Projects Settings Navigation Pane')}
Expand Down

0 comments on commit af7bccf

Please sign in to comment.