Skip to content

Commit

Permalink
fix: (#24) 오타로 인한 스타일 미적용 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
chsua committed Jul 14, 2023
1 parent 4365346 commit d136f79
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const Container = styled.div`
export const Bar = styled.div<{ progress: number; $isSelected: boolean }>`
border-radius: 4px;
width: ${({ progress }) => `${progress}%`};
width: ${({ progress }) => `${progress}%`};
height: 8px;
background-color: ${({ $isSelected }) => ($isSelected ? '#ff7877' : '#9F9F9F')};
Expand Down

0 comments on commit d136f79

Please sign in to comment.