Skip to content

Commit

Permalink
Resolved issue facebook#2971 (facebook#2989)
Browse files Browse the repository at this point in the history
* Resolved issue facebook#2971

- changed h2 to h1 in template to adhere to accessibility guidelines.
- Added h1 styles to maintain same font size.

* Added header tag to template

Corrected templete to use semantically correct header tag for header instead of div

* Added className for App-title

- Added className="App-title" to h1 tag
- Changed CSS selector to target class instead of element
  • Loading branch information
David Leger authored and thongdong7 committed Sep 24, 2017
1 parent 8035b51 commit 7f69240
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions packages/react-scripts/template/src/App.css
Expand Up @@ -14,6 +14,10 @@
color: white;
}

.App-title {
font-size: 1.5em;
}

.App-intro {
font-size: large;
}
Expand Down
6 changes: 3 additions & 3 deletions packages/react-scripts/template/src/App.js
Expand Up @@ -6,10 +6,10 @@ class App extends Component {
render() {
return (
<div className="App">
<div className="App-header">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<h2>Welcome to React</h2>
</div>
<h1 className="App-title">Welcome to React</h1>
</header>
<p className="App-intro">
To get started, edit <code>src/App.js</code> and save to reload.
</p>
Expand Down

0 comments on commit 7f69240

Please sign in to comment.