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:
parent
d81b751f9b
commit
91ab2370fa
5 changed files with 5 additions and 1 deletions
|
@ -48,7 +48,6 @@
|
|||
.notification {
|
||||
@include _.full-width;
|
||||
margin-top: _.unit(6);
|
||||
box-shadow: var(--color-shadow-1);
|
||||
border-radius: var(--radius);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -5,6 +5,7 @@ const SetUsername = () => (
|
|||
<SecondaryPageWrapper
|
||||
title="description.enter_username"
|
||||
description="description.enter_username_description"
|
||||
notification="description.continue_with_more_information"
|
||||
>
|
||||
<SetUsernameForm />
|
||||
</SecondaryPageWrapper>
|
||||
|
|
Loading…
Reference in a new issue