[MM-43185] Fix size of BrowserView for URLView (#2050)

This commit is contained in:
Devin Binnie 2022-04-18 11:29:23 -04:00 committed by GitHub
parent 9b8b1b58be
commit a26e3caf23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View file

@ -35,7 +35,7 @@ import modalManager from './modalManager';
import WebContentsEventManager from './webContentEvents';
const URL_VIEW_DURATION = 10 * SECOND;
const URL_VIEW_HEIGHT = 36;
const URL_VIEW_HEIGHT = 20;
enum LoadingScreenState {
VISIBLE = 1,

View file

@ -1,3 +1,7 @@
body {
margin: 0;
}
.HoveringURL {
position: fixed;
bottom: 0;