Skip to content

Commit 0cdfc15

Browse files
authored
[Setup][Splash] New splash page is 100% width (#462)
1 parent 0b9bc69 commit 0cdfc15

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/code/Meta/BusinessExtension/view/adminhtml/web/js/fbe_allinone.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ jQuery(document).ready(function() {
532532
src: window.facebookBusinessExtensionConfig.fbeLoginUrl + _this.queryParams(),
533533
style: {
534534
border: 'none',
535-
width: '1100px',
535+
width: isNewSplashPage ? '100%' : '1100px',
536536
height: isNewSplashPage ? undefined : '700px',
537537
minHeight: isNewSplashPage ? '700px' : undefined,
538538
},

app/code/Meta/BusinessExtension/view/adminhtml/web/js/lib/fbe.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ jQuery(document).ready(function() {
394394
src: window.facebookBusinessExtensionConfig.fbeLoginUrl + _this.queryParams(),
395395
style: {
396396
border: 'none',
397-
width: '1100px',
397+
width: isNewSplashPage ? '100%' : '1100px',
398398
height: isNewSplashPage ? undefined : '700px',
399399
minHeight: isNewSplashPage ? '700px' : undefined,
400400
},

0 commit comments

Comments
 (0)