Merge branch 'fix/layout-for-mobile' into kletterspots-develop
This commit is contained in:
commit
3a3ab73404
1 changed files with 6 additions and 3 deletions
|
@ -45,10 +45,13 @@ export class FullScreenMessageBox extends UIElement {
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
this._content = State.state.fullScreenMessage.data;
|
this._content = State.state.fullScreenMessage.data;
|
||||||
const uielement = new Combine([this._content]).SetStyle(
|
const innerWrap = new Combine([this._content]).SetStyle(
|
||||||
"display:block;" +
|
"display: block;" +
|
||||||
"padding: 1em;" +
|
"padding: 1em;" +
|
||||||
"padding-bottom:6em;" +
|
"padding-bottom: 6em; "
|
||||||
|
);
|
||||||
|
const uielement = new Combine([innerWrap]).SetStyle(
|
||||||
|
"display:block;" +
|
||||||
`margin-bottom: var(--return-to-the-map-height);` +
|
`margin-bottom: var(--return-to-the-map-height);` +
|
||||||
"box-sizing:border-box;" +
|
"box-sizing:border-box;" +
|
||||||
`height:calc(100vh - var(--return-to-the-map-height));` +
|
`height:calc(100vh - var(--return-to-the-map-height));` +
|
||||||
|
|
Loading…
Reference in a new issue