Skip to content

Commit

Permalink
Update header font size to match redline
Browse files Browse the repository at this point in the history
  • Loading branch information
aosolis committed Mar 24, 2020
1 parent f1d4741 commit 46feee9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/CreateLandingPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function CreateLandingPageComponent(props: CreateLandingPageProps) {
src={calendar}
alt={translate('createLandingPage.splash.altText')}
/>
<Text variant="xxLarge" styles={boldStyle}>
<Text variant="xLargePlus" styles={boldStyle}>
<FormattedMessage id="createLandingPage.schedule.header" />
</Text>
<Text variant="medium">
Expand Down
4 changes: 2 additions & 2 deletions src/ErrorPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import errorImage from './images/genericError.svg';
import { FormattedMessage } from 'react-intl';
import { translate } from './localization/translate';

const semiboldStyle = { root: { fontWeight: FontWeights.semibold } };
const boldStyle = { root: { fontWeight: FontWeights.semibold } };

interface ErrorPageProps {
meeting: OnlineMeetingInput;
Expand Down Expand Up @@ -57,7 +57,7 @@ function ErrorPageComponent(props: ErrorPageProps) {
}}
>
<img className="splashImage" src={errorImage} alt="Error graphic" />
<Text variant="large" styles={semiboldStyle}>
<Text variant="xLargePlus" styles={boldStyle}>
<FormattedMessage id="errorPage.heading" />
</Text>
<Text variant="medium" className="uTextCenter">
Expand Down
2 changes: 1 addition & 1 deletion src/SigninPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function SigninPageComponent(props: Partial<SigninPageProps>) {
src={signInImage}
alt={translate('signin.logo')}
/>
<Text variant="xxLarge" styles={boldStyle} className="signinHeader">
<Text variant="xLargePlus" styles={boldStyle} className="signinHeader">
<FormattedMessage id="signin.header" />
</Text>

Expand Down

0 comments on commit 46feee9

Please sign in to comment.