Skip to content

Commit

Permalink
fix: 커리큘럼 주차 표시 width 고정
Browse files Browse the repository at this point in the history
  • Loading branch information
lydiacho committed Oct 27, 2024
1 parent 7a37bb0 commit cbd7814
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const Curriculum = () => {
<StList>
{CURRICULUM.map((curr, idx) => (
<StItem key={curr}>
<StWeek htmlFor={`week${idx + 1}`}>0{idx}</StWeek>
<StWeek htmlFor={`week${idx + 1}`}>0{idx + 1}</StWeek>
<StInput
id={`week${idx}`}
value={curr}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ export const StWeek = styled.label`
color: ${colors.gray300};
${fontsObject.BODY_1_18_M}
line-height: 48px;
width: 24px;
`;

0 comments on commit cbd7814

Please sign in to comment.