2023-07-11 17:52:45 +08:00

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,
},
};
});