Skip to content

Commit b4a300c

Browse files
committed
Tweak font sizes from switch to pixels.
1 parent 6ad1552 commit b4a300c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

examples/css-layout/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ var App = React.createClass({
7474
getTitleStyle: function () {
7575
return {
7676
fontFace: FontFace('Georgia'),
77-
fontSize: 18,
77+
fontSize: 22,
7878
lineHeight: 28,
7979
height: 28,
8080
marginBottom: 10,
@@ -86,7 +86,7 @@ var App = React.createClass({
8686
getExcerptStyle: function () {
8787
return {
8888
fontFace: FontFace('Georgia'),
89-
fontSize: 12,
89+
fontSize: 17,
9090
lineHeight: 25,
9191
marginTop: 15,
9292
flex: 1,

examples/timeline/components/Page.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ var Page = React.createClass({
9191
top: this.getImageHeight() + CONTENT_INSET,
9292
left: CONTENT_INSET,
9393
width: this.props.width - 2 * CONTENT_INSET,
94-
fontSize: 20,
94+
fontSize: 22,
9595
lineHeight: 30,
9696
fontFace: FontFace('Avenir Next Condensed, Helvetica, sans-serif', null, {weight: 500})
9797
};
@@ -102,7 +102,7 @@ var Page = React.createClass({
102102
left: CONTENT_INSET,
103103
width: this.props.width - 2 * CONTENT_INSET,
104104
fontFace: FontFace('Georgia, serif'),
105-
fontSize: 12,
105+
fontSize: 15,
106106
lineHeight: 23
107107
};
108108
},

0 commit comments

Comments
 (0)