diff --git a/background.html b/background.html index 3591f294a..3a6d4db92 100644 --- a/background.html +++ b/background.html @@ -1,4 +1,4 @@ - + @@ -352,17 +352,19 @@ -
-
+
+
+
-
- -
- - - +
+ +
+ + + +
+
-
diff --git a/stylesheets/_index.scss b/stylesheets/_index.scss index 66babfede..e3b16fac6 100644 --- a/stylesheets/_index.scss +++ b/stylesheets/_index.scss @@ -1,6 +1,10 @@ -// Copyright 2015-2020 Signal Messenger, LLC +// Copyright 2015-2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only +#app-container { + height: 100%; +} + .conversation-stack, .new-conversation, .inbox, diff --git a/ts/background.ts b/ts/background.ts index e4613a95d..5a2970f7a 100644 --- a/ts/background.ts +++ b/ts/background.ts @@ -1715,7 +1715,7 @@ export async function startApp(): Promise { cancelInitializationMessage(); render( window.Signal.State.Roots.createApp(window.reduxStore), - document.body + document.getElementById('app-container') ); const hideMenuBar = window.storage.get('hide-menu-bar', false); window.setAutoHideMenuBar(hideMenuBar);