Merge branch 'main' into next

This commit is contained in:
nocobase[bot] 2024-12-09 02:41:11 +00:00
commit ca1e5442e5
2 changed files with 6 additions and 7 deletions

View File

@ -2,9 +2,7 @@
"version": "1.5.0-beta.2",
"npmClient": "yarn",
"useWorkspaces": true,
"npmClientArgs": [
"--ignore-engines"
],
"npmClientArgs": ["--ignore-engines"],
"command": {
"version": {
"forcePublish": true,

View File

@ -8,19 +8,20 @@
*/
import { createStyles } from '@nocobase/client';
import { PageBackgroundColor } from '../constants';
export const useStyles = createStyles(({ token, css }) => {
return {
nbMobile: css`
body {
background-color: ${PageBackgroundColor};
}
-webkit-overflow-scrolling: touch;
display: initial;
& ::-webkit-scrollbar {
display: none;
}
.nb-card-list {
background-color: rgb(245, 245, 245);
}
.nb-details .ant-formily-item-feedback-layout-loose {
margin-bottom: 5px;
}