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

made signin appear on the login page and fixed the padding issue #8163

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion res/css/views/auth/_AuthBody.scss
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ limitations under the License.
}

.mx_AuthBody_paddedFooter {
height: 80px; // height of the submit button + register link
height: 57px; // height of the submit button + register link
padding-top: 28px;
text-align: center;

Expand Down
2 changes: 1 addition & 1 deletion src/components/views/auth/PasswordLogin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ export default class PasswordLogin extends React.PureComponent<IProps, IState> {
ref={field => this[LoginField.Password] = field}
/>
{ forgotPasswordJsx }
{ !this.props.busy && <input className="mx_Login_submit"
{ <input className="mx_Login_submit"
type="submit"
value={_t('Sign in')}
disabled={this.props.disableSubmit}
Expand Down