mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Fixed spacing and shadow bug on signup
This commit is contained in:
parent
b0e3143d10
commit
0edb619630
3 changed files with 20 additions and 4 deletions
|
@ -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}) {
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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',
|
||||
|
|
Loading…
Add table
Reference in a new issue