Skip to content

Commit 3202780

Browse files
NicolappsConvex, Inc.
authored andcommitted
dash: Fix Functions page layout on large screens (#43534)
GitOrigin-RevId: 5ddc8a766d5e09c612e5a170358922126733877d
1 parent 4362b78 commit 3202780

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

npm-packages/dashboard-common/src/features/functions/components/FunctionsView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function Functions() {
5555
);
5656
} else {
5757
content = (
58-
<div className="flex h-full max-w-[110rem] min-w-0 grow flex-col overflow-hidden">
58+
<div className="flex h-full min-w-0 grow flex-col overflow-hidden">
5959
<HeadlessTab.Group
6060
selectedIndex={selectedTabIndex}
6161
onChange={setSelectedTabIndex}
@@ -73,7 +73,7 @@ function Functions() {
7373
</div>
7474
</div>
7575

76-
<HeadlessTab.Panels className="scrollbar flex w-full min-w-0 grow overflow-x-auto p-6">
76+
<HeadlessTab.Panels className="scrollbar flex w-full max-w-[110rem] min-w-0 grow overflow-x-auto p-6">
7777
<HeadlessTab.Panel className="grow">
7878
<PerformanceGraphs />
7979
</HeadlessTab.Panel>

0 commit comments

Comments
 (0)