mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Updated responsive sizes for account home
This commit is contained in:
parent
8bbbfd9e49
commit
ee1d1c80f3
1 changed files with 8 additions and 7 deletions
|
@ -8,13 +8,10 @@ import {getDateString} from '../../utils/date-time';
|
|||
const React = require('react');
|
||||
|
||||
export const AccountHomePageStyles = `
|
||||
.gh-portal-content.account-home {
|
||||
max-height: calc(100vh - 12vw - 104px);
|
||||
}
|
||||
|
||||
.gh-portal-account-main {
|
||||
background: var(--grey13);
|
||||
padding: 32px;
|
||||
padding: 32px 32px 0;
|
||||
max-height: calc(100vh - 12vw - 104px);
|
||||
}
|
||||
|
||||
.gh-portal-account-header {
|
||||
|
@ -28,6 +25,10 @@ export const AccountHomePageStyles = `
|
|||
margin: 6px 0 8px !important;
|
||||
}
|
||||
|
||||
.gh-portal-account-data {
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
footer.gh-portal-account-footer {
|
||||
display: flex;
|
||||
padding: 32px;
|
||||
|
@ -321,9 +322,9 @@ const CancelContinueSubscription = ({member, onAction, action, brandColor, showO
|
|||
|
||||
const AccountMain = ({member, site, onAction, action, openSubscribe, brandColor, openEditProfile, openUpdatePlan, onEditBilling, onToggleSubscription}) => {
|
||||
return (
|
||||
<div className='gh-portal-account-main'>
|
||||
<div className='gh-portal-content gh-portal-account-main'>
|
||||
<UserHeader member={member} brandColor={brandColor} />
|
||||
<section>
|
||||
<section className='gh-portal-account-data'>
|
||||
<AccountWelcome action={action} member={member} site={site} openSubscribe={e => openSubscribe(e)} brandColor={brandColor} />
|
||||
<CancelContinueSubscription
|
||||
member={member}
|
||||
|
|
Loading…
Add table
Reference in a new issue