Fix UI for sm devices

pull/1657/head
Pitou 2020-01-09 11:23:53 +01:00
parent db040aa301
commit 547a73727f
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ export function ForgotPassword(props: ForgotPasswordProps) {
onEmailChange,
} = props;
return <Col xs={12} sm={5}>
return <Col xs={12} sm={5} smOffset={1} mdOffset={0}>
<Widget>
<WidgetHeader title={"Reset Password"}>
<button

View File

@ -24,7 +24,7 @@ export class ResendVerification extends React.Component<Props, State> {
state: State = {};
render() {
return <Col xs={12} sm={5}>
return <Col xs={12} sm={5} smOffset={1} mdOffset={0}>
<Widget>
<WidgetHeader title={t("Account Not Verified")}>
<button onClick={this.props.onGoBack}