fix: PageLayout에 로딩 인디케이터 중앙 정렬

This commit is contained in:
jhynsoo 2024-08-01 17:47:52 +09:00
parent ebaf3d13e0
commit cff1250b4c

View File

@ -11,7 +11,7 @@ export default function PageLayout() {
<Header />
<div className={styles.body}>
<div className={styles.contents}>
<Suspense fallback={<LoadingIndicator full />}>
<Suspense fallback={<LoadingIndicator fill />}>
<Outlet />
</Suspense>
</div>