Skip to content

Commit 5dfb241

Browse files
authored
Merge pull request depromeet#813 from depromeet/feat/issue-812
chore: depromeet#812 스페이스 내 회고 갯수 넘버링 컬러 반영
2 parents 2489a37 + f09ac47 commit 5dfb241

2 files changed

Lines changed: 24 additions & 3 deletions

File tree

apps/web/src/component/retrospect/space/CompletedRetrospects.tsx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,18 @@ export default function CompletedRetrospects() {
3535
min-width: 30rem;
3636
`}
3737
>
38-
<Typography variant="title16Bold">마감된 회고 {completedRetrospects.length}</Typography>
38+
<div
39+
css={css`
40+
display: flex;
41+
align-items: center;
42+
gap: 0.6rem;
43+
`}
44+
>
45+
<Typography variant="title16Bold">마감된 회고 </Typography>
46+
<Typography variant="title16Bold" color="gray600">
47+
{completedRetrospects?.length}
48+
</Typography>
49+
</div>
3950

4051
{completedRetrospects.length === 0 ? (
4152
<div

apps/web/src/component/retrospect/space/InProgressRetrospects.tsx

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,18 @@ export default function InProgressRetrospects() {
8282
min-width: 30rem;
8383
`}
8484
>
85-
<Typography variant="title16Bold">진행 중인 회고 {proceedingRetrospects.length}</Typography>
86-
85+
<div
86+
css={css`
87+
display: flex;
88+
align-items: center;
89+
gap: 0.6rem;
90+
`}
91+
>
92+
<Typography variant="title16Bold">진행 중인 회고 </Typography>
93+
<Typography variant="title16Bold" color="gray600">
94+
{proceedingRetrospects?.length}
95+
</Typography>
96+
</div>
8797
{proceedingRetrospects.length === 0 ? (
8898
<div
8999
css={css`

0 commit comments

Comments
 (0)