mirror of
https://github.com/nocobase/nocobase
synced 2024-11-16 18:41:31 +00:00
19 lines
384 B
TypeScript
19 lines
384 B
TypeScript
|
import { createStyles } from '@nocobase/client';
|
||
|
|
||
|
export const useStyles = createStyles(({ token, css }) => {
|
||
|
return {
|
||
|
nbKanban: css`
|
||
|
overflow: hidden;
|
||
|
height: 100%;
|
||
|
overflow-y: auto;
|
||
|
.ant-spin-container: {
|
||
|
height: 100%;
|
||
|
.ant-formily-item-label: {
|
||
|
color: #8c8c8c;
|
||
|
fontweight: normal;
|
||
|
}
|
||
|
}
|
||
|
`,
|
||
|
};
|
||
|
});
|