Skip to content

Commit

Permalink
fix: ReviewCard 컴포넌트 flex-start로 상단 정렬 및 위치 비워두기
Browse files Browse the repository at this point in the history
  • Loading branch information
soosoo22 committed Jan 7, 2025
1 parent e869d38 commit 3202a95
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import ReviewCard from '@/components/ReviewCard';
import { URLGeneratorForm } from '@/pages/HomePage/components';

import ReviewLinkLayout from '../layouts/ReviewLinkLayout';
Expand All @@ -17,8 +16,8 @@ const ReviewLinkDashboard = () => {
title={'생성한 리뷰 링크를 확인해보세요'}
subTitle={'클릭하면 해당 프로젝트의 리뷰 목록으로 이동해요'}
>
{/* TODO: 생성한 리뷰 링크가 없을 경우, 돋보기 컴포넌트 추가 */}
<ReviewCard createdAt={''} contentPreview={''} categories={[]} handleClick={() => {}} />
{/* TODO: ReviewCard 컴포넌트 추가 및 생성한 리뷰 링크가 없을 경우, 돋보기 컴포넌트 추가 */}
<></>
</ReviewLinkLayout>
</S.LinkSection>
</S.ReviewLinkDashboardContainer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export const Separator = styled.div`
export const LinkSection = styled.section`
display: flex;
flex-direction: column;
justify-content: center;
justify-content: flex-start;
gap: 3rem;
width: 100%;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import media from '@/utils/media';
export const ReviewLinkLayout = styled.div`
display: flex;
flex-direction: column;
gap: 4rem;
`;

Expand Down

0 comments on commit 3202a95

Please sign in to comment.