0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-10 23:36:14 -05:00

Fixed powered badge bug in preview

This commit is contained in:
Peter Zimon 2021-10-18 10:37:58 +02:00
parent e1468b25ac
commit 37e9255550
2 changed files with 6 additions and 2 deletions

View file

@ -19,7 +19,7 @@ const DEV_MODE_DATA = {
showPopup: true,
site: Fixtures.site,
member: Fixtures.member.free,
page: 'offer',
page: 'signup',
pageData: Fixtures.offer
};

View file

@ -652,16 +652,20 @@ const MobileStyles = `
}
.gh-portal-powered {
display: flex;
position: relative;
bottom: unset;
left: unset;
background: var(--white);
display: flex;
justify-content: center;
width: 100%;
padding-top: 32px;
}
.gh-portal-popup-container.preview .gh-portal-powered {
display: none;
}
.gh-portal-popup-wrapper.account-home .gh-portal-powered {
background: var(--grey13);
}