File tree Expand file tree Collapse file tree
apps/web/src/component/retrospect/space Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 `
You can’t perform that action at this time.
0 commit comments