style(项目管理): 修复任务中心弹窗展示不全问题
This commit is contained in:
parent
3ed55b0e07
commit
22750ad7a3
|
@ -1,8 +1,9 @@
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
ref="fullRef"
|
ref="fullRef"
|
||||||
class="flex flex-col rounded-[var(--border-radius-small)] bg-[var(--color-fill-1)] p-[12px]"
|
:class="`${
|
||||||
:class="[!isAdaptive ? 'h-full' : '']"
|
!isAdaptive ? 'h-full' : ''
|
||||||
|
} flex flex-col rounded-[var(--border-radius-small)] bg-[var(--color-fill-1)] p-[12px]`"
|
||||||
>
|
>
|
||||||
<div v-if="showTitleLine" class="mb-[8px] flex items-center justify-between">
|
<div v-if="showTitleLine" class="mb-[8px] flex items-center justify-between">
|
||||||
<div class="flex flex-wrap gap-[4px]">
|
<div class="flex flex-wrap gap-[4px]">
|
||||||
|
|
|
@ -8,7 +8,8 @@
|
||||||
:footer="false"
|
:footer="false"
|
||||||
modal-class="modalSelf"
|
modal-class="modalSelf"
|
||||||
:body-style="{
|
:body-style="{
|
||||||
height: '100%',
|
'height': '100%',
|
||||||
|
'max-height': 'none',
|
||||||
}"
|
}"
|
||||||
:modal-style="{
|
:modal-style="{
|
||||||
padding: '16px 16px 0',
|
padding: '16px 16px 0',
|
||||||
|
|
Loading…
Reference in New Issue