From 890151fa725f713dadc7be2079a8ec1762af8a94 Mon Sep 17 00:00:00 2001 From: Leonard Kim Date: Sat, 4 May 2019 08:36:42 -0700 Subject: [PATCH] fix(welcome-page): remove watermark container to avoid z-index wars By making the container 100% height and position relative, that would cause it to overlap any static-positioned elements below it. The 100% makes it so that any watermarks intended for the bottom of the page show up on the bottom of the page. However, it's not needed because watermark stylings already try to position the watermarks at the bottom. --- css/_welcome_page.scss | 6 ------ react/features/welcome/components/WelcomePage.web.js | 4 +--- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/css/_welcome_page.scss b/css/_welcome_page.scss index 5be60c46d..b61d402f0 100644 --- a/css/_welcome_page.scss +++ b/css/_welcome_page.scss @@ -162,10 +162,4 @@ body.welcome-page { font-size: 32px; } } - - .welcome-watermark { - position: absolute; - width: 100%; - height: 100%; - } } diff --git a/react/features/welcome/components/WelcomePage.web.js b/react/features/welcome/components/WelcomePage.web.js index 08761c1f8..fe8cc1088 100644 --- a/react/features/welcome/components/WelcomePage.web.js +++ b/react/features/welcome/components/WelcomePage.web.js @@ -119,9 +119,7 @@ class WelcomePage extends AbstractWelcomePage { className = { `welcome ${showAdditionalContent ? 'with-content' : 'without-content'}` } id = 'welcome_page'> -
- -
+