Skip to content

Commit 8a64f6b

Browse files
committed
Limit max width to 1920px
1 parent 426d369 commit 8a64f6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/components/InstrumentData.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ export function InstrumentData({ instrumentName }: { instrumentName: string }) {
206206
return <h1>Loading...</h1>;
207207
}
208208
return (
209-
<div className="p-2 w-full mx-auto">
209+
<div className="p-2 w-full max-w-[1920px] mx-auto">
210210
<TopBar
211211
dashboard={currentInstrument.dashboard}
212212
instName={instName}

0 commit comments

Comments
 (0)