Skip to content

Commit cd6efdc

Browse files
authored
Merge pull request #135 from COW-dev/refactor/#134-progressBar
[REFACTOR] 너비 변경
2 parents 73f4245 + 8517fa7 commit cd6efdc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/ui/ProgressBar/ProgressBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export function ProgressBar({ color = 'primary', percent, className }: Props) {
1919
const barColor = COLORS[color];
2020

2121
return (
22-
<div className={cn('h-2.5 w-[16.5rem] overflow-hidden rounded-full bg-gray-100', className)}>
22+
<div className={cn('h-2.5 w-full overflow-hidden rounded-full bg-gray-100', className)}>
2323
<div
2424
className="h-full rounded-full transition-[width] duration-500 ease-in-out"
2525
style={{

0 commit comments

Comments
 (0)