From 9af388df0abbeda5a6d71dc20abe838e514a4b47 Mon Sep 17 00:00:00 2001 From: lesmaux Date: Sat, 29 Sep 2018 09:43:36 +1200 Subject: [PATCH] added missing file, and merged into master --- shared-styles.js | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 shared-styles.js diff --git a/shared-styles.js b/shared-styles.js new file mode 100644 index 0000000..a046910 --- /dev/null +++ b/shared-styles.js @@ -0,0 +1,22 @@ +import { StyleSheet} from 'react-native'; + +export default StyleSheet.create({ + runInfoWrapper: { + backgroundColor: 'rgba(255,255,255,0.75)', + paddingVertical: 15 + }, + runInfoTitle: { + textAlign: 'center', + fontWeight: '700', + color: '#666' + + }, + runInfoValue: { + textAlign: 'center', + fontSize: 24, + fontWeight: '100', + paddingVertical: 5 + + } + +}) \ No newline at end of file