Skip to content

Commit

Permalink
Fixed headers
Browse files Browse the repository at this point in the history
  • Loading branch information
zanselm5 committed May 1, 2017
1 parent f245a57 commit efb3ae4
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 13 deletions.
2 changes: 1 addition & 1 deletion dist/css/style.css

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions dist/js/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/components/pages/About.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default class About extends React.Component {
render() {
return (
<div>
<h2>About</h2>
<h1>About</h1>
</div>
)
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/Contacts.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Contacts extends React.Component {
render() {
return (
<div>
<h2>Contacts</h2>
<h1>Contacts</h1>
</div>
)
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Home extends React.Component {
render() {
return (
<div>
<h2>Home</h2>
<h1>Home</h1>
</div>
)
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/Providers.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Providers extends React.Component {
render() {
return (
<div>
<h2>Providers</h2>
<h1>Providers</h1>
</div>
)
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/Tabs.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Tabs extends React.Component {
render() {
return (
<div>
<h2>Tabs</h2>
<h1>Tabs</h1>
{this.props.test}
</div>
)
Expand Down
2 changes: 1 addition & 1 deletion src/components/pages/Topics.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default class Topics extends React.Component {

return (
<div>
<h2>Topics</h2>
<h1>Topics</h1>
<ul>
<li>
<Link to={`${match.url}/rendering`}>
Expand Down
10 changes: 10 additions & 0 deletions src/styles/components/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,16 @@ h1, h2, h3, h4, h5, h6 {
font-family: 'PT Sans';
}

h1 {
font-size: 2.5rem;
}
h2 {
font-size: 2rem;
}
h3 {
font-size: 1.6rem;
}

.view {
height: 100%;
padding: 0;
Expand Down

0 comments on commit efb3ae4

Please sign in to comment.