This commit is contained in:
Youri Wims 2019-05-29 11:51:31 -04:00
Родитель acfd59c9f4
Коммит 284d1b7aee
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -11,7 +11,7 @@ class HintMessage extends React.Component {
render() {
return (
<div className="hint-message text-center">
<div className="pt-4 pt-lg-5 text-center">
<h2 className="h2-heading">{ this.props.header }</h2>
{ this.props.children }
{ this.renderLink() }

Просмотреть файл

@ -118,7 +118,7 @@ class ProfileProjectTab extends React.Component {
header="Save your Favs"
linkComponent={<Link to={`/featured`}>Explore featured</Link>}
>
<p>Tap the heart on any project to save it here.</p>
<p className="h4-heading mb-4">Tap the heart on any project to save it here.</p>
</HintMessage>;
}