File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import KaKaoLogin from "@/pages/KaKaoLogin";
1111import MbtiTestIntro from "@/pages/MbtiTestIntro" ;
1212import MbtiTestQuestions from "@/pages/MbtiTestQuestions" ;
1313import MbtiTestResult from "@/pages/MbtiTestResult" ;
14- import CenteredLayout from ". /components/CenteredLayout" ;
14+ import CenteredLayout from "@ /components/CenteredLayout" ;
1515
1616const App = ( ) => {
1717 return (
Original file line number Diff line number Diff line change 1- import { ReactNode } from ' react' ;
1+ import { ReactNode } from " react" ;
22
33interface CenteredLayoutProps {
44 children : ReactNode ;
55}
66
77const CenteredLayout = ( { children } : CenteredLayoutProps ) => (
8- < div className = "flex justify-center w-screen" >
9- < div className = "w-full flex justify-center" >
10- { children }
11- </ div >
8+ < div className = "flex min-h-screen w-screen justify-center bg-gray-50" >
9+ < div className = "flex w-full justify-center bg-gray-50" > { children } </ div >
1210 </ div >
1311) ;
1412
You can’t perform that action at this time.
0 commit comments