Hide image on mobile

This commit is contained in:
Pieter Vander Vennet 2020-07-31 18:48:37 +02:00
parent 77ad4ef666
commit fb13485983
4 changed files with 39 additions and 5 deletions

File diff suppressed because one or more lines are too long

View file

@ -31,7 +31,8 @@ export class WelcomeMessage extends UIElement {
}
this.description = fromLayout((layout) => layout.welcomeMessage);
this.plzLogIn = fromLayout((layout) => layout.gettingStartedPlzLogin.onClick(()=> State.state.osmConnection.AttemptLogin()));
this.plzLogIn = fromLayout((layout) => layout.gettingStartedPlzLogin);
this.plzLogIn.onClick(()=> State.state.osmConnection.AttemptLogin());
this.welcomeBack = fromLayout((layout) => layout.welcomeBackMessage);
this.tail = fromLayout((layout) => layout.welcomeTail);
}