fix(缺陷管理): 调整详情评论TAB左侧滑动样式

--bug=1036444 --user=宋昌昌 【缺陷管理】缺陷详情-展开评论-回复子评论-未展示取消发布按钮-无法发布 https://www.tapd.cn/55049933/s/1469301
This commit is contained in:
song-cc-rock 2024-03-05 14:36:06 +08:00 committed by Craftsman
parent 4115a54585
commit 41ac431003
1 changed files with 11 additions and 1 deletions

View File

@ -75,7 +75,14 @@
</template>
<template #default>
<div ref="wrapperRef" class="h-full bg-white">
<MsSplitBox ref="wrapperRef" expand-direction="right" :max="0.7" :min="0.7" :size="900">
<MsSplitBox
ref="wrapperRef"
expand-direction="right"
:max="0.7"
:min="0.7"
:size="900"
:class="{ 'left-bug-detail': activeTab === 'comment' }"
>
<template #first>
<div class="leftWrapper h-full">
<div class="header h-[50px]">
@ -488,4 +495,7 @@
:deep(.active .arco-badge-text) {
background: rgb(var(--primary-5));
}
.left-bug-detail {
height: 88%;
}
</style>