forked from vergnet/application-amicale
Fixed buttons not having enough room on some devices
This commit is contained in:
parent
7295108832
commit
7b332e11fc
1 changed files with 9 additions and 7 deletions
|
@ -236,13 +236,6 @@ class LoginScreen extends React.Component<Props, State> {
|
||||||
<Card.Content>
|
<Card.Content>
|
||||||
{this.getFormInput()}
|
{this.getFormInput()}
|
||||||
<Card.Actions>
|
<Card.Actions>
|
||||||
<Button
|
|
||||||
icon="help-circle"
|
|
||||||
mode="contained"
|
|
||||||
onPress={this.onResetPasswordClick}
|
|
||||||
style={{marginLeft: 'auto'}}>
|
|
||||||
{i18n.t("loginScreen.resetPassword")}
|
|
||||||
</Button>
|
|
||||||
<Button
|
<Button
|
||||||
icon="send"
|
icon="send"
|
||||||
mode="contained"
|
mode="contained"
|
||||||
|
@ -253,6 +246,15 @@ class LoginScreen extends React.Component<Props, State> {
|
||||||
{i18n.t("loginScreen.login")}
|
{i18n.t("loginScreen.login")}
|
||||||
</Button>
|
</Button>
|
||||||
</Card.Actions>
|
</Card.Actions>
|
||||||
|
<Card.Actions>
|
||||||
|
<Button
|
||||||
|
icon="help-circle"
|
||||||
|
mode="contained"
|
||||||
|
onPress={this.onResetPasswordClick}
|
||||||
|
style={{marginLeft: 'auto'}}>
|
||||||
|
{i18n.t("loginScreen.resetPassword")}
|
||||||
|
</Button>
|
||||||
|
</Card.Actions>
|
||||||
</Card.Content>
|
</Card.Content>
|
||||||
</Card>
|
</Card>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue