summaryrefslogtreecommitdiffhomepage
path: root/app/components/LayoutStyles.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/components/LayoutStyles.js')
-rw-r--r--app/components/LayoutStyles.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/app/components/LayoutStyles.js b/app/components/LayoutStyles.js
deleted file mode 100644
index 7db2a0225b..0000000000
--- a/app/components/LayoutStyles.js
+++ /dev/null
@@ -1,19 +0,0 @@
-// @flow
-
-import { Styles } from 'reactxp';
-import { colors } from '../config';
-
-export default {
- layout: Styles.createViewStyle({
- flexDirection: 'column',
- flex: 1,
- }),
- header: Styles.createViewStyle({
- flex: 0,
- }),
- container: Styles.createViewStyle({
- flex: 1,
- backgroundColor: colors.blue,
- overflow: 'hidden',
- }),
-};