diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2017-06-04 16:16:49 -0400 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2017-06-04 16:16:49 -0400 |
| commit | 85968a3a6bc5737715ed34fba942153174d2c993 (patch) | |
| tree | 0947cd6c2077c9024b8e150ff921467757f39621 /client/src/lib/components | |
| parent | 14b8f0acb52cfe6eca4d74a583562939d3aa7a1a (diff) | |
about this work
Diffstat (limited to 'client/src/lib/components')
| -rw-r--r-- | client/src/lib/components/htmlStyles.js | 11 | ||||
| -rw-r--r-- | client/src/lib/components/scrollableContainer.js | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/client/src/lib/components/htmlStyles.js b/client/src/lib/components/htmlStyles.js index a627884..1b050a2 100644 --- a/client/src/lib/components/htmlStyles.js +++ b/client/src/lib/components/htmlStyles.js @@ -29,4 +29,15 @@ export default StyleSheet.create({ fontSize: 16, lineHeight: 30, }, + h2: { + color: 'white', + fontFamily: '"Futura-Medium", sans-serif', + fontSize: 14, + lineHeight: 16, + fontWeight: 'bold', + paddingTop: 10, + paddingBottom: 5, + display: 'block', + textAlign: 'left', + }, }) diff --git a/client/src/lib/components/scrollableContainer.js b/client/src/lib/components/scrollableContainer.js index b0beb63..4d97359 100644 --- a/client/src/lib/components/scrollableContainer.js +++ b/client/src/lib/components/scrollableContainer.js @@ -29,7 +29,7 @@ export default class ScrollableContainer extends Component { <ScrollView ref={(ref) => this.scrollView = ref} contentContainerStyle={[styles.body, bodyStyle]}> {headingEl} {this.props.children} - <div style={{height: 40}}>footer</div> + <div style={{height: 40}}> </div> </ScrollView> </View> ) |
