fix: adjust frontend panel sizing (#12660)

This commit is contained in:
ssongliu
2026-05-06 14:22:15 +08:00
committed by GitHub
parent f2625eab16
commit d94c3ec9cc
3 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@
v-model="open"
:header="resource"
@close="handleClose"
:size="globalStore.isFullScreen ? 'full' : 'large'"
:size="globalStore.isFullScreen ? 'full' : '60%'"
:resource="container"
>
<template #extra v-if="!mobile">

View File

@@ -4,7 +4,7 @@
:header="$t('commons.button.log')"
@close="handleClose"
:resource="logSearch.container"
:size="globalStore.isFullScreen ? 'full' : 'large'"
:size="globalStore.isFullScreen ? 'full' : '60%'"
>
<template #extra v-if="!mobile">
<el-tooltip :content="loadTooltip()" placement="top">

View File

@@ -108,6 +108,6 @@ defineExpose({
<style lang="scss" scoped>
.terminal {
height: calc(100vh - 237px);
height: calc(100vh - 240px);
}
</style>