diff --git a/ghost/portal/src/App.js b/ghost/portal/src/App.js
index 8e63a19fca..333e8c4364 100644
--- a/ghost/portal/src/App.js
+++ b/ghost/portal/src/App.js
@@ -143,7 +143,7 @@ export default class App extends React.Component {
showPopup: true,
site: Fixtures.site,
member: Fixtures.member.free,
- page: 'signup'
+ page: 'accountPlan'
};
}
return {};
diff --git a/ghost/portal/src/components/common/MemberGravatar.js b/ghost/portal/src/components/common/MemberGravatar.js
index 94ee088cec..10958e5dc8 100644
--- a/ghost/portal/src/components/common/MemberGravatar.js
+++ b/ghost/portal/src/components/common/MemberGravatar.js
@@ -11,29 +11,29 @@ export const AvatarStyles = `
margin-bottom: 8px;
border-radius: 999px;
}
+
+ .gh-portal-avatar img {
+ display: block;
+ position: absolute;
+ top: -1px;
+ right: -1px;
+ bottom: -1px;
+ left: -1px;
+ width: calc(100% + 2px);
+ height: calc(100% + 2px);
+ opacity: 1;
+ maxWidth: unset;
+ }
`;
const Styles = ({style = {}}) => {
return {
userIcon: {
- width: '20px',
- height: '20px',
+ width: '56px',
+ height: '56px',
color: '#fff',
...(style.userIcon || {}) // Override any custom style
},
- gravatar: {
- display: 'block',
- position: 'absolute',
- top: '-1px',
- right: '-1px',
- bottom: '-1px',
- left: '-1px',
- width: 'calc(100% + 2px)',
- height: 'calc(100% + 2px)',
- opacity: '1',
- maxWidth: 'unset',
- ...(style.gravatar || {}) // Override any custom style
- }
};
};
@@ -42,7 +42,7 @@ function MemberGravatar({gravatar, style}) {
return (
: null}
+ {gravatar ?
: null}