Skip to content

Commit cdf3bda

Browse files
committed
ui: round inner meter in ui/progress
1 parent 065a055 commit cdf3bda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/ui/progress.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const Progress = React.forwardRef<
1616
{...props}
1717
>
1818
<ProgressPrimitive.Indicator
19-
className="h-full w-full flex-1 bg-disabled transition-all"
19+
className="h-full w-full flex-1 rounded-full bg-disabled transition-all"
2020
style={{ transform: `translateX(-${100 - (value || 0)}%)` }}
2121
/>
2222
</ProgressPrimitive.Root>

0 commit comments

Comments
 (0)