summaryrefslogtreecommitdiff
path: root/client/src/lib/components
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/lib/components')
-rw-r--r--client/src/lib/components/htmlStyles.js11
-rw-r--r--client/src/lib/components/scrollableContainer.js2
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}}>&nbsp;</div>
</ScrollView>
</View>
)