Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Commit

Permalink
修改图片
Browse files Browse the repository at this point in the history
  • Loading branch information
shanhexi committed May 30, 2023
1 parent 299036e commit e0a6273
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 8 deletions.
Binary file added ali-dbhub-client/src/assets/theme-auto.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified ali-dbhub-client/src/assets/theme-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed ali-dbhub-client/src/assets/theme-dark.webp
Binary file not shown.
Binary file removed ali-dbhub-client/src/assets/theme-default.png
Binary file not shown.
Binary file removed ali-dbhub-client/src/assets/theme-default.webp
Binary file not shown.
Binary file removed ali-dbhub-client/src/assets/theme-follow.png
Binary file not shown.
Binary file removed ali-dbhub-client/src/assets/theme-follow.webp
Binary file not shown.
Binary file added ali-dbhub-client/src/assets/theme-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion ali-dbhub-client/src/components/Setting/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
cursor: pointer;
}
.current {
border: 2px solid var(--custom-primary-color-active);
border: 1px solid var(--custom-primary-color-active);
}
filter: brightness(var(--filter-brightness));
}
Expand Down
14 changes: 7 additions & 7 deletions ali-dbhub-client/src/components/Setting/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import { imghub } from '@/utils/imghub';
import configService, { IChatgptConfig } from '@/service/config';
import miscService from '@/service/misc';
import BrandLogo from '@/components/BrandLogo';
import themeDarkImg from '@/assets/theme-dark.webp';
import themeDefaultImg from '@/assets/theme-default.webp';
import themeFollowImg from '@/assets/theme-follow.webp';
import themeDarkImg from '@/assets/theme-dark.png';
import themeLightImg from '@/assets/theme-light.png';
import themeAutoImg from '@/assets/theme-auto.png';

const { Option } = Select;

Expand Down Expand Up @@ -54,16 +54,16 @@ const backgroundList = [
code: 'dark',
name: '暗色',
img: themeDarkImg
},
},
{
code: 'default',
name: '亮色',
img: themeDefaultImg
img: themeLightImg
},
{
code: 'followOs',
name: '跟随系统',
img: themeFollowImg
name: '自动',
img: themeAutoImg
},
// {
// code: 'eyeshield',
Expand Down

0 comments on commit e0a6273

Please sign in to comment.