Fix issue with disappearing tab when opening request tabs with long text in body/script (#3030)

Co-authored-by: Liyas Thomas <liyascthomas@gmail.com>
This commit is contained in:
Anwarul Islam
2023-05-09 01:00:27 +06:00
committed by GitHub
parent fb08147c66
commit 87ba02053b
2 changed files with 4 additions and 5 deletions

View File

@@ -481,10 +481,6 @@ pre.ace_editor {
}
.cm-editor {
.cm-content {
@apply whitespace-normal;
}
.cm-line::selection {
@apply bg-accentDark #{!important};
@apply text-accentContrast #{!important};

View File

@@ -24,7 +24,10 @@
>
<Pane class="flex flex-1 !overflow-auto">
<main class="flex flex-1 w-full" role="main">
<RouterView v-slot="{ Component }" class="flex flex-1">
<RouterView
v-slot="{ Component }"
class="flex flex-1 min-w-0"
>
<Transition name="fade" mode="out-in" appear>
<component :is="Component" />
</Transition>