Skip to content

Commit

Permalink
Remove normal token from headings
Browse files Browse the repository at this point in the history
  • Loading branch information
victorhmp committed Jul 31, 2019
1 parent d1e56b3 commit d976014
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion react/ComponentsGrid.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const ComponentsGrid: FC<any> = ({ ComponentsListQuery }) => {

return (
<div className="pv9 w-90 center">
<h1 className="t-heading-1 normal center mb6">
<h1 className="t-heading-1 center mb6">
<FormattedMessage id={`docs/components/${params.category}`} />
</h1>
<p className="small c-on-base center mb8">
Expand Down
2 changes: 1 addition & 1 deletion react/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const Home: FC<InjectedIntlProps> = ({ intl }) => {
<FormattedMessage id="docs/getting-started" />
</strong>
</p>
<p className="t-heading-4 mv3 normal pv6 ttu">
<p className="t-heading-4 mv3 pv6 ttu">
<FormattedMessage id="docs/create-stores" />
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion react/RecipesList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const RecipesList: FC<any> = ({ RecipeListQuery, runtime }) => {

return (
<div className="pv9">
<h1 className="t-heading-1 normal w-90 w-80-ns center mb6">
<h1 className="t-heading-1 w-90 w-80-ns center mb6">
<FormattedMessage id={`docs/recipes/${params.category}`} />
</h1>
<p className="small c-on-base w-90 w-80-ns center mb8">
Expand Down
2 changes: 1 addition & 1 deletion react/ResourcesList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import Skeleton from './components/Skeleton'

const ResourcesList: FC<InnerProps> = ({ ResourcesListQueryData }) => (
<div className="pv9">
<h1 className="t-heading-1 normal w-90 w-80-ns center mb6">
<h1 className="t-heading-1 w-90 w-80-ns center mb6">
<FormattedMessage id="docs/resources" />
</h1>
<p className="small c-on-base w-90 w-80-ns center mb8">
Expand Down
2 changes: 1 addition & 1 deletion react/components/Community.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const Community: FC<InjectedIntlProps> = ({ intl }) => (
<section className="mv9">
<h2
id={slug(intl.formatMessage({ id: 'docs/community-help' }))}
className="t-heading-2 normal">
className="t-heading-2">
<FormattedMessage id="docs/community-help" />
</h2>
<a
Expand Down
4 changes: 2 additions & 2 deletions react/components/LatestFeatures.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const LatestFeatures: FC<InjectedIntlProps> = ({ intl }) => (
<section className="mv9">
<h2
id={slug(intl.formatMessage({ id: 'docs/latest-features' }))}
className="t-heading-2 normal mv4">
className="t-heading-2 mv4">
<FormattedMessage id="docs/latest-features" />
</h2>
<p className="c-on-base">
Expand All @@ -20,7 +20,7 @@ const LatestFeatures: FC<InjectedIntlProps> = ({ intl }) => (
<div
className="pv4 bb b--muted-3 items-center"
key={slug(item.description)}>
<p className="t-heading-4 normal mv2">{item.title}</p>
<p className="t-heading-4 mv2">{item.title}</p>
<p className="t-body c-on-base mb2">{item.description}</p>
</div>
))}
Expand Down
2 changes: 1 addition & 1 deletion react/components/RecipeListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface Props {

const RecipeListItem: FC<Props> = ({ title, description, link }) => (
<article className="flex flex-column justify-center mv4 no-underline">
<h2 className="t-heading-2 normal">{title}</h2>
<h2 className="t-heading-2">{title}</h2>
<p className="t-body c-on-base">{description}</p>
<Link
to={link}
Expand Down

0 comments on commit d976014

Please sign in to comment.