diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 3712ad8..586b26a 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -58,7 +58,7 @@ const ChartWorkspaceRoot = lazy(() => import './App.css'; // virtualTradingDashboard.css는 VirtualTradingPage.tsx에서 import // paperDashboard.css는 PaperTradingPage.tsx에서 import -// tradeRightPanel.css는 ChartWorkspaceView.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/components/TradeNotificationListPage.tsx b/frontend/src/components/TradeNotificationListPage.tsx index b2ab159..230212d 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/tradeRightPanel.css'; import '../styles/tradeNotificationList.css'; import TradeNotificationListRow from './tradeNotification/TradeNotificationListRow'; import { VirtualGridScroll, VirtualScroll } from './common/VirtualScroll'; diff --git a/frontend/src/components/layout/BuilderPageShell.tsx b/frontend/src/components/layout/BuilderPageShell.tsx index 60d03af..e3e7e68 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/tradeRightPanel.css'; const LEFT_MIN = 220; const LEFT_MAX = 520;