Skip to content

Commit

Permalink
feat: 이미지 width 설정해서 layout shift 생기지 않도록 설정
Browse files Browse the repository at this point in the history
  • Loading branch information
jinhokim98 committed Nov 18, 2024
1 parent b727e1f commit 25b4690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/pages/LoginPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const LoginPage = () => {
<FunnelLayout>
<Flex flexDirection="column" justifyContent="spaceBetween" height="100%">
<Flex flexDirection="column" justifyContent="center" alignItems="center" gap="1rem" margin="0 0 6rem 0">
<Image src={getImageUrl('heundeut', 'webp')} fallbackSrc={getImageUrl('heundeut', 'png')} />
<Image src={getImageUrl('heundeut', 'webp')} fallbackSrc={getImageUrl('heundeut', 'png')} width={109} />
<Text size="bodyBold" css={{whiteSpace: 'pre-line', textAlign: 'center'}}>
{`로그인을 사용하면\n더 편하게 사용할 수 있어요`}
</Text>
Expand Down

0 comments on commit 25b4690

Please sign in to comment.