Merge branch 'next' into develop

This commit is contained in:
Zeke Zhang 2024-11-28 09:03:39 +08:00
commit d54fec10e7
3 changed files with 10 additions and 1 deletions

View File

@ -217,7 +217,7 @@ const InternalGridCard = withSkeletonComponent(
}}
renderItem={(item, index) => {
return (
<Col style={{ height: '100%' }}>
<Col style={{ height: '100%' }} className="nb-card-item-warper">
<RecursionField
key={index}
basePath={field.address}

View File

@ -92,6 +92,7 @@ export const Mobile = () => {
marginBlock: 18,
borderRadiusBlock: 0,
boxShadowTertiary: 'none',
fontSize: 14,
},
}}
>

View File

@ -20,6 +20,9 @@ export const useStyles = genStyleHook('nb-mobile', (token) => {
'& ::-webkit-scrollbar': {
display: 'none',
},
'.nb-card-list': {
backgroundColor: 'rgb(245, 245, 245)',
},
'.nb-details .ant-formily-item-feedback-layout-loose': {
marginBottom: '5px',
},
@ -112,6 +115,11 @@ export const useStyles = genStyleHook('nb-mobile', (token) => {
fontSize: '14px',
height: '100%',
},
'.nb-mobile-setting': {
'[data-menu-id$="-theme"]': {
display: 'none',
},
},
},
};
});