mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-07 22:49:26 +08:00
18 lines
367 B
TypeScript
18 lines
367 B
TypeScript
import { createStyles } from 'antd-style';
|
|
|
|
export const useStyles = createStyles(({ token }) => {
|
|
return {
|
|
nbMenuItemGroup: {
|
|
maxHeight: '50vh',
|
|
overflowY: 'auto',
|
|
},
|
|
|
|
nbMenuItemSubMenu: {
|
|
maxHeight: '50vh',
|
|
overflowY: 'auto',
|
|
boxShadow: token.boxShadowSecondary,
|
|
borderRadius: token.borderRadiusLG,
|
|
},
|
|
};
|
|
});
|