Skip to content

Commit 0f4bed0

Browse files
authored
set max-width of capacity bar to 50% (#2180)
1 parent 06f4b86 commit 0f4bed0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/components/CapacityBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export const CapacityBar = <T extends number | bigint>({
3232
const unitElt = includeUnit ? <>&nbsp;{unit}</> : null
3333

3434
return (
35-
<div className="w-full min-w-min rounded-lg border border-default">
35+
<div className="w-full min-w-min rounded-lg border border-default lg+:max-w-[50%]">
3636
<div className="flex justify-between p-3">
3737
<TitleCell icon={icon} title={title} unit={unit} />
3838
<PctCell pct={pct} />

0 commit comments

Comments
 (0)