mirror of
https://github.com/logto-io/logto.git
synced 2025-01-20 21:32:31 -05:00
fix(ui): dark mode seed (#1426)
* fix(ui): add dark logo seed add dark logo seed * style(ui): adjust notifiction style adjust notification style * chore(schemas): set default seed dark mode disabled set default seed dark mode disabled
This commit is contained in:
parent
45395ff74e
commit
be73dbf4ef
2 changed files with 7 additions and 3 deletions
|
@ -7,13 +7,13 @@ export const defaultSignInExperience: Readonly<CreateSignInExperience> = {
|
|||
id: 'default',
|
||||
color: {
|
||||
primaryColor: '#6139F6',
|
||||
isDarkModeEnabled: true,
|
||||
isDarkModeEnabled: false,
|
||||
darkPrimaryColor: '#8768F8',
|
||||
},
|
||||
branding: {
|
||||
style: BrandingStyle.Logo,
|
||||
logoUrl: 'https://logto.io/logo.svg',
|
||||
darkLogoUrl: '',
|
||||
darkLogoUrl: 'https://logto.io/logo-dark.svg',
|
||||
},
|
||||
languageInfo: {
|
||||
autoDetect: true,
|
||||
|
@ -35,6 +35,10 @@ export const defaultSignInExperience: Readonly<CreateSignInExperience> = {
|
|||
|
||||
export const adminConsoleSignInExperience: CreateSignInExperience = {
|
||||
...defaultSignInExperience,
|
||||
color: {
|
||||
...defaultSignInExperience.color,
|
||||
isDarkModeEnabled: true,
|
||||
},
|
||||
branding: {
|
||||
style: BrandingStyle.Logo_Slogan,
|
||||
logoUrl: 'https://logto.io/logo.svg',
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
top: _.unit(-6);
|
||||
left: 50%;
|
||||
transform: translate(-50%, -100%);
|
||||
width: fit-content;
|
||||
width: max-content;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue