fix(common): remove double scrollbar in response pane (#5665)

Co-authored-by: nivedin <nivedinp@gmail.com>
This commit is contained in:
preeyaX 2025-12-09 05:58:28 -08:00 committed by GitHub
parent e51676eea0
commit d67a85b128
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View file

@ -12,7 +12,7 @@
<Pane
:size="SIDEBAR && hasSidebar ? PANE_MAIN_SIZE : 100"
min-size="65"
class="flex flex-col !overflow-auto"
class="flex flex-col !overflow-hidden"
>
<Splitpanes
class="smart-splitter"
@ -29,7 +29,7 @@
<Pane
v-if="hasSecondary"
:size="PANE_MAIN_BOTTOM_SIZE"
class="flex flex-col !overflow-auto"
class="flex flex-col !overflow-hidden"
min-size="25"
>
<slot name="secondary" />

View file

@ -4,7 +4,7 @@
<Pane style="height: auto">
<AppHeader />
</Pane>
<Pane :class="spacerClass" class="flex flex-1 !overflow-auto md:mb-0">
<Pane :class="spacerClass" class="flex flex-1 !overflow-hidden md:mb-0">
<Splitpanes
class="no-splitter"
:dbl-click-splitter="false"
@ -16,13 +16,13 @@
>
<AppSidenav />
</Pane>
<Pane class="flex flex-1 !overflow-auto">
<Pane class="flex flex-1 !overflow-hidden">
<Splitpanes
class="no-splitter"
:dbl-click-splitter="false"
horizontal
>
<Pane class="flex flex-1 !overflow-auto">
<Pane class="flex flex-1 !overflow-hidden">
<main class="flex w-full flex-1" role="main">
<RouterView
v-slot="{ Component }"