Skip to content

Commit 2ef93eb

Browse files
authored
Merge pull request #13817 from ethereum/progress-patch
ui: round inner meter in ui/progress
2 parents 5fa34dd + cdf3bda commit 2ef93eb

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)