refactor: modify default lable style (#318)

This commit is contained in:
SemmyWong 2022-04-24 23:28:28 +08:00 committed by GitHub
parent 3750484cbc
commit cc4da4ca15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 1 deletions

View File

@ -1,3 +1,4 @@
.ant-formily-item-label {
color: #8c8c8c;
color: #000000d9;
font-weight:600;
}

View File

@ -9,6 +9,7 @@ import { Board } from '../../../board';
import '../../../board/style.less';
import { useProps } from '../../hooks/useProps';
import { KanbanCardContext, KanbanColumnContext } from './context';
import './index.less';
const useCreateActionProps = () => {
const form = useForm();

View File

@ -0,0 +1,16 @@
.react-kanban-board {
margin-bottom: 24px;
.nb-block-item {
.ant-formily-item-control .ant-space-item{
white-space: normal;
word-break: break-all;
word-wrap: break-word;
}
& .ant-formily-item-label{
color: #8c8c8c;
font-weight:normal;
}
}
}