Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SP2] 프로젝트 카드 디자인 수정 #262

Merged
merged 1 commit into from
Nov 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions src/views/ProjectPage/components/project/ProjectCard/style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,13 @@ export const ProjectCard = styled(Link)`
grid-template-areas:
'thumbnail'
'header'
'summary';
grid-template-rows: 202px 32px 44px;
'summary'
'detail';
grid-template-rows: 202px 32px 54px 30px;

width: 352px;
height: 345px;
padding: 14px;
padding: 14px 14px 11px 14px;
border: 1px solid ${colors.gray700};
border-radius: 20px;

Expand Down Expand Up @@ -120,6 +121,8 @@ export const ProjectSummary = styled.div`
`;

export const ProjectDetail = styled.div`
grid-area: detail;

display: flex;
justify-content: space-between;
align-items: center;
Expand Down
Loading