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

View file

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