diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 586b26a..89de17b 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -57,7 +57,7 @@ const ChartWorkspaceRoot = lazy(() => ); import './App.css'; // virtualTradingDashboard.css는 VirtualTradingPage.tsx에서 import -// paperDashboard.css는 PaperTradingPage.tsx에서 import +// paperDashboard.css는 BuilderPageShell.tsx, ChartWorkspaceView.tsx, TradeNotificationListPage.tsx에서 import // tradeRightPanel.css는 ChartWorkspaceView.tsx, BuilderPageShell.tsx, TradeNotificationListPage.tsx에서 import // backtestDashboard.css는 BacktestHistoryPage.tsx, AnalysisReportPage.tsx에서 import // appPopup.css는 AppPopup.tsx에서 import diff --git a/frontend/src/chart/ChartWorkspaceView.tsx b/frontend/src/chart/ChartWorkspaceView.tsx index 4a5ea60..c8da318 100644 --- a/frontend/src/chart/ChartWorkspaceView.tsx +++ b/frontend/src/chart/ChartWorkspaceView.tsx @@ -1,3 +1,4 @@ +import '../styles/paperDashboard.css'; import '../styles/tradeRightPanel.css'; import React from 'react'; import DrawingToolbar from '../components/DrawingToolbar'; diff --git a/frontend/src/components/TradeNotificationListPage.tsx b/frontend/src/components/TradeNotificationListPage.tsx index e693628..4e99d29 100644 --- a/frontend/src/components/TradeNotificationListPage.tsx +++ b/frontend/src/components/TradeNotificationListPage.tsx @@ -35,6 +35,7 @@ import { readStoredBool, storeBool } from './strategyEditor/usePanelResize'; import '../styles/strategyEditorTheme.css'; import '../styles/virtualTradingDashboard.css'; import '../styles/builderPageShell.css'; +import '../styles/paperDashboard.css'; import '../styles/tradeRightPanel.css'; import '../styles/tradeNotificationList.css'; import TradeNotificationListRow from './tradeNotification/TradeNotificationListRow'; diff --git a/frontend/src/components/layout/BuilderPageShell.tsx b/frontend/src/components/layout/BuilderPageShell.tsx index e3e7e68..376caf3 100644 --- a/frontend/src/components/layout/BuilderPageShell.tsx +++ b/frontend/src/components/layout/BuilderPageShell.tsx @@ -9,6 +9,7 @@ import { } from '../strategyEditor/usePanelResize'; import '../../styles/strategyEditorTheme.css'; import '../../styles/builderPageShell.css'; +import '../../styles/paperDashboard.css'; import '../../styles/tradeRightPanel.css'; const LEFT_MIN = 220;