0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00

fix(ui): hot fix the rebase issue (#2438)

This commit is contained in:
simeng-li 2022-11-15 11:42:25 +08:00 committed by GitHub
parent d81b751f9b
commit 91ab2370fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 1 deletions

View file

@ -48,7 +48,6 @@
.notification {
@include _.full-width;
margin-top: _.unit(6);
box-shadow: var(--color-shadow-1);
border-radius: var(--radius);
}
}

View file

@ -18,6 +18,7 @@ const EmailOrPhone = () => {
<SecondaryPageWrapper
title="description.link_email_or_phone"
description="description.link_email_or_phone_description"
notification="description.continue_with_more_information"
>
<EmailContinue autoFocus hasSwitch />
</SecondaryPageWrapper>
@ -29,6 +30,7 @@ const EmailOrPhone = () => {
<SecondaryPageWrapper
title="description.link_email_or_phone"
description="description.link_email_or_phone_description"
notification="description.continue_with_more_information"
>
<SmsContinue autoFocus hasSwitch />
</SecondaryPageWrapper>

View file

@ -5,6 +5,7 @@ const SetEmail = () => (
<SecondaryPageWrapper
title="description.link_email"
description="description.link_email_description"
notification="description.continue_with_more_information"
>
<EmailContinue autoFocus />
</SecondaryPageWrapper>

View file

@ -6,6 +6,7 @@ const SetPhone = () => {
<SecondaryPageWrapper
title="description.link_phone"
description="description.link_phone_description"
notification="description.continue_with_more_information"
>
<SmsContinue autoFocus />
</SecondaryPageWrapper>

View file

@ -5,6 +5,7 @@ const SetUsername = () => (
<SecondaryPageWrapper
title="description.enter_username"
description="description.enter_username_description"
notification="description.continue_with_more_information"
>
<SetUsernameForm />
</SecondaryPageWrapper>