Skip to content

Commit

Permalink
feat: ui 수정
Browse files Browse the repository at this point in the history
- 8px 간격 추가
-  과제 박스는 순서대로 정렬
  • Loading branch information
SeieunYoo committed Jan 5, 2025
1 parent 5f61619 commit 2281b03
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export const AssignmentOverviewBox = async ({
target="_blank"
text="과제 명세 확인"
/>
<Space height={8} />
<AssignmentBoxInfo
assignment={assignment}
repositoryLink={repositoryLink}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,13 @@ export const AssignmentContent = async () => {
flexDirection={isAnyFirstWeekAssignment ? "row-reverse" : "row"}
gap="lg"
>
<AssignmentOverviewBox
assignments={studyDashboard.submittableAssignments}
buttonsDisabled={!studyDashboard.repositoryLink}
repositoryLink={studyDashboard.repositoryLink}
/>
<Flex flexDirection="row" gap="lg">
<AssignmentOverviewBox
assignments={studyDashboard.submittableAssignments}
buttonsDisabled={!studyDashboard.repositoryLink}
repositoryLink={studyDashboard.repositoryLink}
/>
</Flex>
<RepositorySubmissionBox
repositoryLink={studyDashboard.repositoryLink}
/>
Expand Down

0 comments on commit 2281b03

Please sign in to comment.