mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-17 23:44:39 -05:00
Fixed powered badge bug in preview
This commit is contained in:
parent
e1468b25ac
commit
37e9255550
2 changed files with 6 additions and 2 deletions
|
@ -19,7 +19,7 @@ const DEV_MODE_DATA = {
|
||||||
showPopup: true,
|
showPopup: true,
|
||||||
site: Fixtures.site,
|
site: Fixtures.site,
|
||||||
member: Fixtures.member.free,
|
member: Fixtures.member.free,
|
||||||
page: 'offer',
|
page: 'signup',
|
||||||
pageData: Fixtures.offer
|
pageData: Fixtures.offer
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -652,16 +652,20 @@ const MobileStyles = `
|
||||||
}
|
}
|
||||||
|
|
||||||
.gh-portal-powered {
|
.gh-portal-powered {
|
||||||
|
display: flex;
|
||||||
position: relative;
|
position: relative;
|
||||||
bottom: unset;
|
bottom: unset;
|
||||||
left: unset;
|
left: unset;
|
||||||
background: var(--white);
|
background: var(--white);
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
padding-top: 32px;
|
padding-top: 32px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.gh-portal-popup-container.preview .gh-portal-powered {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.gh-portal-popup-wrapper.account-home .gh-portal-powered {
|
.gh-portal-popup-wrapper.account-home .gh-portal-powered {
|
||||||
background: var(--grey13);
|
background: var(--grey13);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue