Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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