From 686ad537c7feb97271c8f77ee534d8001220c9a6 Mon Sep 17 00:00:00 2001 From: Peter Zimon Date: Wed, 30 Sep 2020 14:36:14 +0200 Subject: [PATCH] Updated primary button height --- ghost/portal/src/App.js | 2 +- ghost/portal/src/components/common/ActionButton.js | 2 +- ghost/portal/src/components/common/InputField.js | 2 +- ghost/portal/src/components/pages/AccountProfilePage.js | 2 +- ghost/portal/src/utils/fixtures.js | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ghost/portal/src/App.js b/ghost/portal/src/App.js index b133d574f7..2bdb8c6133 100644 --- a/ghost/portal/src/App.js +++ b/ghost/portal/src/App.js @@ -16,7 +16,7 @@ const DEV_MODE_DATA = { showPopup: true, site: Fixtures.site, member: Fixtures.member.paid, - page: 'accountProfile' + page: 'signup' }; export default class App extends React.Component { constructor(props) { diff --git a/ghost/portal/src/components/common/ActionButton.js b/ghost/portal/src/components/common/ActionButton.js index e5f70e7082..ac98c388d4 100644 --- a/ghost/portal/src/components/common/ActionButton.js +++ b/ghost/portal/src/components/common/ActionButton.js @@ -7,7 +7,7 @@ export const ActionButtonStyles = ` .gh-portal-btn-main { box-shadow: none; position: relative; - height: 44px; + height: 42px; border: none; } diff --git a/ghost/portal/src/components/common/InputField.js b/ghost/portal/src/components/common/InputField.js index 0e43687e81..17e3b67196 100644 --- a/ghost/portal/src/components/common/InputField.js +++ b/ghost/portal/src/components/common/InputField.js @@ -43,7 +43,7 @@ export const InputFieldStyles = ` } .gh-portal-input:focus { - border-color: var(--grey10); + border-color: #cdcdcd; } .gh-portal-input.error { diff --git a/ghost/portal/src/components/pages/AccountProfilePage.js b/ghost/portal/src/components/pages/AccountProfilePage.js index b34e238e9c..3ed98a1d87 100644 --- a/ghost/portal/src/components/pages/AccountProfilePage.js +++ b/ghost/portal/src/components/pages/AccountProfilePage.js @@ -73,7 +73,7 @@ export default class AccountProfilePage extends React.Component { disabled={disabled} brandColor={this.context.brandColor} label={label} - style={{height: '44px', width: '100%'}} + style={{width: '100%'}} /> ); } diff --git a/ghost/portal/src/utils/fixtures.js b/ghost/portal/src/utils/fixtures.js index b7e5a2bcb8..9dc0f4a212 100644 --- a/ghost/portal/src/utils/fixtures.js +++ b/ghost/portal/src/utils/fixtures.js @@ -15,7 +15,7 @@ export const site = { is_stripe_configured: true, portal_button: true, portal_name: true, - portal_plans: ['free','monthly', 'yearly'], + portal_plans: ['free','monthly'], portal_button_icon: 'icon-1', portal_button_signup_text: 'Subscribe now', portal_button_style: 'icon-and-text',