0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00

Added product description to signup

This commit is contained in:
Peter Zimon 2021-05-07 11:04:42 +02:00 committed by Rishabh Garg
parent 3358847e78
commit d52f054410

View file

@ -38,6 +38,14 @@ export const SignupPageStyles = `
margin: 4px 0 0;
}
.gh-portal-signup-header .gh-portal-main-subtitle {
font-size: 1.5rem;
text-align: center;
line-height: 1.45em;
margin: 4px 0 0;
color: var(--grey3);
}
.gh-portal-signup-header.nodivider {
border: none;
margin-bottom: 0;
@ -418,6 +426,7 @@ class SignupPage extends React.Component {
<header className='gh-portal-signup-header'>
{this.renderSiteLogo()}
<h2 className="gh-portal-main-title">{siteTitle}</h2>
<p className="gh-portal-main-subtitle">Your primary news source on woodworking</p>
</header>
);
}