fix(kanban): fix block (#3619)

This commit is contained in:
Zeke Zhang 2024-03-05 20:55:27 +08:00 committed by GitHub
parent c07767e753
commit 5a72e41a9d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,12 +6,16 @@ export const useStyles = createStyles(({ token, css }) => {
overflow: hidden; overflow: hidden;
height: 100%; height: 100%;
overflow-y: auto; overflow-y: auto;
.ant-spin-container: { .ant-spin-container {
height: 100%; height: 100%;
.ant-formily-item-label: { .ant-formily-item-label: {
color: #8c8c8c; color: #8c8c8c;
fontweight: normal; fontweight: normal;
} }
// 为了撑满固定区块时的高度
& > * {
height: 100%;
}
} }
`, `,
}; };