|
@@ -176,11 +176,12 @@ class WelcomePage extends AbstractWelcomePage {
|
176
|
176
|
const showAdditionalCard = this._shouldShowAdditionalCard();
|
177
|
177
|
const showAdditionalContent = this._shouldShowAdditionalContent();
|
178
|
178
|
const showAdditionalToolbarContent = this._shouldShowAdditionalToolbarContent();
|
|
179
|
+ const contentClassName = showAdditionalContent ? 'with-content' : 'without-content';
|
|
180
|
+ const footerClassName = DISPLAY_WELCOME_FOOTER ? 'with-footer' : 'without-footer';
|
179
|
181
|
|
180
|
182
|
return (
|
181
|
183
|
<div
|
182
|
|
- className = { `welcome ${showAdditionalContent
|
183
|
|
- ? 'with-content' : 'without-content'}` }
|
|
184
|
+ className = { `welcome ${contentClassName} ${footerClassName}` }
|
184
|
185
|
id = 'welcome_page'>
|
185
|
186
|
<div className = 'welcome-watermark'>
|
186
|
187
|
<Watermarks defaultJitsiLogoURL = { DEFAULT_WELCOME_PAGE_LOGO_URL } />
|