diff --git a/ghost/portal/src/App.js b/ghost/portal/src/App.js index ade61dc220..cb6b9b810e 100644 --- a/ghost/portal/src/App.js +++ b/ghost/portal/src/App.js @@ -19,7 +19,7 @@ const DEV_MODE_DATA = { showPopup: true, site: Fixtures.site, member: Fixtures.member.paid, - page: 'signup' + page: 'signin' }; function SentryErrorBoundary({site, children}) { diff --git a/ghost/portal/src/components/pages/SignupPage.js b/ghost/portal/src/components/pages/SignupPage.js index a1a96b182d..3221447d1e 100644 --- a/ghost/portal/src/components/pages/SignupPage.js +++ b/ghost/portal/src/components/pages/SignupPage.js @@ -90,16 +90,32 @@ export const SignupPageStyles = ` footer.gh-portal-signup-footer, footer.gh-portal-signin-footer { + position: relative; padding-top: 24px; height: 132px; } + /* Needed to cover small horizontal line glitch by the scroll shadow */ + footer.gh-portal-signup-footer::before { + position: absolute; + content: ""; + top: -2px; + left: 0; + right: 0; + height: 3px; + background: #fff; + } + .gh-portal-content.signup, .gh-portal-content.signin { max-height: calc(100vh - 12vw - 140px); padding-bottom: 0; } + .gh-portal-content.signin { + padding-bottom: 4px; + } + .gh-portal-content.signup .gh-portal-section { margin-bottom: 0; } @@ -109,7 +125,7 @@ export const SignupPageStyles = ` } .gh-portal-content.signup.single-field { - margin-bottom: 0; + margin-bottom: 4px; } .gh-portal-content.signup.single-field .gh-portal-input, diff --git a/ghost/portal/src/utils/fixtures.js b/ghost/portal/src/utils/fixtures.js index d0c5aee0e0..cb4270a54a 100644 --- a/ghost/portal/src/utils/fixtures.js +++ b/ghost/portal/src/utils/fixtures.js @@ -164,8 +164,8 @@ export const site = { currency: 'USD' }, portal_products: ['product_1', 'product_2', 'product_3'], - // products: [products[0]], - products: products, + products: [products[0]], + // products: products, prices, allow_self_signup: true, members_signup_access: 'all',