This commit is contained in:
archer
2023-06-10 14:01:00 +08:00
parent e19ac56fe5
commit 6fd49b0955
11 changed files with 161 additions and 119 deletions

View File

@@ -232,6 +232,10 @@ export const theme = extendTheme({
xl: '1800px',
'2xl': '2100px'
},
active: {
activeBlueGradient: 'linear-gradient(120deg, #d6e8ff 0%, #f0f7ff 100%)',
hoverBlueGradient: 'linear-gradient(60deg, #f0f7ff 0%, #d6e8ff 100%)'
},
components: {
Modal: ModalTheme,
Button,

View File

@@ -40,3 +40,8 @@ export const InformTypeMap = {
label: '系统通知'
}
};
export enum MyModelsTypeEnum {
my = 'my',
collection = 'collection'
}