From edef4273c0fa66f4d33e6ca0e476f6434ec7b821 Mon Sep 17 00:00:00 2001 From: geonhee-min Date: Wed, 3 Dec 2025 17:05:19 +0900 Subject: [PATCH] =?UTF-8?q?issue=20#48=20-=20=ED=99=88=20=ED=99=94?= =?UTF-8?q?=EB=A9=B4=20=EB=B0=8F=20=EC=A0=84=EC=B2=B4=EC=A0=81=20ui=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.tsx | 2 ++ src/index.css | 5 ++++- src/ui/page/home/HomePage.tsx | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 3a0742f..c8e841e 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -9,6 +9,7 @@ import ResetPasswordPage from './ui/page/account/resetPassword/ResetPasswordPage import { HomePage } from './ui/page/home/HomePage'; import type { AuthData } from './data/AuthData'; import { useEffect } from 'react'; +import { ScheduleMainPage } from './ui/page/schedule/ScheduleMainPage'; function App() { const { authData, login } = useAuthStore(); @@ -38,6 +39,7 @@ function App() { : <> } path="*" /> } path={PageRouting["HOME"].path} /> + } path={PageRouting["SCHEDULES"].path} /> } diff --git a/src/index.css b/src/index.css index c913384..7cdd06f 100644 --- a/src/index.css +++ b/src/index.css @@ -120,7 +120,10 @@ } html, body, #root { - height: 100%; + width: 100%; + height: 100%; + min-width: 1280px; + min-height: 720px; } /* Chrome, Safari, Edge */ diff --git a/src/ui/page/home/HomePage.tsx b/src/ui/page/home/HomePage.tsx index 96cd619..51c0a4d 100644 --- a/src/ui/page/home/HomePage.tsx +++ b/src/ui/page/home/HomePage.tsx @@ -1,6 +1,6 @@ export const HomePage = () => { return ( -
+
HomePage
)