diff --git a/UI/FullScreenMessageBoxHandler.ts b/UI/FullScreenMessageBoxHandler.ts index 70d5d90..412d65a 100644 --- a/UI/FullScreenMessageBoxHandler.ts +++ b/UI/FullScreenMessageBoxHandler.ts @@ -45,10 +45,13 @@ export class FullScreenMessageBox extends UIElement { return ""; } this._content = State.state.fullScreenMessage.data; - const uielement = new Combine([this._content]).SetStyle( - "display:block;" + + const innerWrap = new Combine([this._content]).SetStyle( + "display: block;" + "padding: 1em;" + - "padding-bottom:6em;" + + "padding-bottom: 6em; " + ); + const uielement = new Combine([innerWrap]).SetStyle( + "display:block;" + `margin-bottom: var(--return-to-the-map-height);` + "box-sizing:border-box;" + `height:calc(100vh - var(--return-to-the-map-height));` +