From 5a72e41a9de9c1aa52ac128ae10fb680adfca931 Mon Sep 17 00:00:00 2001 From: Zeke Zhang <958414905@qq.com> Date: Tue, 5 Mar 2024 20:55:27 +0800 Subject: [PATCH] fix(kanban): fix block (#3619) --- .../plugins/@nocobase/plugin-kanban/src/client/style.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/plugins/@nocobase/plugin-kanban/src/client/style.tsx b/packages/plugins/@nocobase/plugin-kanban/src/client/style.tsx index e9bfbbe1a..e487a498f 100644 --- a/packages/plugins/@nocobase/plugin-kanban/src/client/style.tsx +++ b/packages/plugins/@nocobase/plugin-kanban/src/client/style.tsx @@ -6,12 +6,16 @@ export const useStyles = createStyles(({ token, css }) => { overflow: hidden; height: 100%; overflow-y: auto; - .ant-spin-container: { + .ant-spin-container { height: 100%; .ant-formily-item-label: { color: #8c8c8c; fontweight: normal; } + // 为了撑满固定区块时的高度 + & > * { + height: 100%; + } } `, };