0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Added new account plan page to popup modal flow

no issue

- Adds modal style and page value for new account plan page to modal
This commit is contained in:
Rish 2020-05-01 20:53:48 +05:30
parent c6cf81664c
commit ec407eae5f

View file

@ -7,6 +7,7 @@ import LoadingPage from './pages/LoadingPage';
import {ReactComponent as CloseIcon} from '../images/icons/close.svg';
import {ParentContext} from './ParentContext';
import FrameStyle from './Frame.styles';
import AccountPlanPage from './pages/AccountPlanPage';
const React = require('react');
@ -55,6 +56,11 @@ const Styles = {
},
loading: {
minHeight: '130px'
},
accountPlan: {
width: '500px',
minHeight: '290px',
maxHeight: '290px'
}
},
popup: {
@ -91,6 +97,7 @@ const Pages = {
signin: SigninPage,
signup: SignupPage,
accountHome: AccountHomePage,
accountPlan: AccountPlanPage,
magiclink: MagicLinkPage,
loading: LoadingPage
};