Skip to content

Commit

Permalink
fix: 특정 화면에서 로딩 컴포넌트가 한쪽으로 쏠리는 오류 수정 (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
cos18 authored May 22, 2020
1 parent f73cd1b commit 3023b45
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/frameworks/web/components/organisms/SignIn/SignInCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default function SignInCard(): React.ReactElement {
};

return (
<div>
<>
<SignInContainer isDarkBackground>
<Label type="H4" color={theme.color.primary.Azure} style={{ textAlign: 'center' }}>
SIGN IN
Expand Down Expand Up @@ -137,6 +137,6 @@ export default function SignInCard(): React.ReactElement {
</SignButtonContainer>
</SignInContainer>
{isLoading && <Loading />}
</div>
</>
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default function SignUpComplete(): React.ReactElement {
};

return (
<div>
<>
<SingleCard
title="인증메일이 전송되었습니다!"
buttonLabel={['재전송', '확인']}
Expand All @@ -59,6 +59,6 @@ export default function SignUpComplete(): React.ReactElement {
</Label>
</SingleCard>
{isLoading && <Loading />}
</div>
</>
);
}

0 comments on commit 3023b45

Please sign in to comment.