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) => { renderItem={(item, index) => {
return ( return (
<Col style={{ height: '100%' }}> <Col style={{ height: '100%' }} className="nb-card-item-warper">
<RecursionField <RecursionField
key={index} key={index}
basePath={field.address} basePath={field.address}

View File

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

View File

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