Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit ca411f7

Browse files
committed
mx_AuthBody_changeFlow_signIn
Signed-off-by: Suguru Hirahara <[email protected]>
1 parent 42874a9 commit ca411f7

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

res/css/views/auth/_AuthBody.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,10 @@ limitations under the License.
148148
> a {
149149
font-weight: $font-semi-bold;
150150
}
151+
152+
&.mx_AuthBody_changeFlow_signIn {
153+
margin: 6px auto 0;
154+
}
151155
}
152156

153157
.mx_SSOButtons + .mx_AuthBody_changeFlow {

src/components/structures/auth/Registration.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -536,7 +536,7 @@ export default class Registration extends React.Component<IProps, IState> {
536536
);
537537
}
538538

539-
const signIn = <span className="mx_AuthBody_changeFlow">
539+
const signIn = <span className="mx_AuthBody_changeFlow mx_AuthBody_changeFlow_signIn">
540540
{ _t("Already have an account? <a>Sign in here</a>", {}, {
541541
a: sub => <AccessibleButton kind='link_inline' onClick={this.onLoginClick}>{ sub }</AccessibleButton>,
542542
}) }
@@ -616,7 +616,7 @@ export default class Registration extends React.Component<IProps, IState> {
616616
/>
617617
{ this.renderRegisterComponent() }
618618
{ goBack }
619-
<div className="mx_AuthBody_link_signIn">{ signIn }</div>
619+
{ signIn }
620620
</div>;
621621
}
622622

0 commit comments

Comments
 (0)