Skip to content

Commit

Permalink
feat: 과제 없을 때 ui 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
SeieunYoo committed Sep 7, 2024
1 parent 1ba7178 commit 6f3672d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const EmptyAssignmentBox = () => {
style={boxStyle}
text={
<Text as="h2" typo="h2">
과제가 없어요
과제가 없어요.
</Text>
}
/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { css } from "@styled-system/css";
import { Flex } from "@styled-system/jsx";
import { Space } from "@wow-class/ui";
import { myStudyApi } from "apis/myStudyApi";
import { studyDetailApi } from "apis/studyDetailApi";
import { routePath } from "constants/routePath";
Expand All @@ -26,8 +27,9 @@ export const AssignmentContent = async () => {
if (studyDashboard.submittableAssignments.length === 0) {
return (
<section>
<Flex className={boxContainerStyle} gap="lg">
<Flex direction="column">
<EmptyAssignmentBox />
<Space height={64} />
</Flex>
</section>
);
Expand Down

0 comments on commit 6f3672d

Please sign in to comment.