Skip to content

Commit

Permalink
fix: project container row 가변
Browse files Browse the repository at this point in the history
  • Loading branch information
Jungjjeong committed Nov 25, 2024
1 parent e82da2a commit 69fcd79
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/features/Main/sections/MainProjectSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ const projectContainerCss = css`
margin-top: 36px;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
gap: 12px;
${mediaQuery('tablet')} {
grid-template-columns: repeat(2, 1fr);
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/project.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ const projectContainerCss = css`
margin-top: 36px;
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(3, 1fr);
gap: 12px;
${mediaQuery('tablet')} {
grid-template-columns: repeat(2, 1fr);
}
Expand Down

0 comments on commit 69fcd79

Please sign in to comment.