summaryrefslogtreecommitdiffhomepage
path: root/app/components/PreferencesStyles.js
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2018-07-18 15:07:37 +0200
committerAndrej Mihajlov <and@mullvad.net>2018-08-15 17:39:38 +0200
commit71592249b2dd669b6f24f37bfb7b0f4e43b74998 (patch)
treea6097dc7e5d94d06e99c65fdfe160e824395f50c /app/components/PreferencesStyles.js
parente84e87f4ce5a8c242f756566cdc6fb59a45f7bea (diff)
downloadmullvadvpn-71592249b2dd669b6f24f37bfb7b0f4e43b74998.tar.xz
mullvadvpn-71592249b2dd669b6f24f37bfb7b0f4e43b74998.zip
Add workspaces
Diffstat (limited to 'app/components/PreferencesStyles.js')
-rw-r--r--app/components/PreferencesStyles.js60
1 files changed, 0 insertions, 60 deletions
diff --git a/app/components/PreferencesStyles.js b/app/components/PreferencesStyles.js
deleted file mode 100644
index 3a39ce3c5f..0000000000
--- a/app/components/PreferencesStyles.js
+++ /dev/null
@@ -1,60 +0,0 @@
-// @flow
-
-import { Styles } from 'reactxp';
-import { colors } from '../config';
-
-export default {
- preferences: Styles.createViewStyle({
- backgroundColor: colors.darkBlue,
- flex: 1,
- }),
- preferences__container: Styles.createViewStyle({
- display: 'flex',
- flexDirection: 'column',
- flex: 1,
- }),
- preferences__content: Styles.createViewStyle({
- flexDirection: 'column',
- flexGrow: 1,
- flexShrink: 1,
- flexBasis: 'auto',
- }),
- preferences__cell: Styles.createViewStyle({
- backgroundColor: colors.blue,
- flexDirection: 'row',
- alignItems: 'center',
- }),
- preferences__cell_accessory: Styles.createViewStyle({
- marginRight: 12,
- }),
- preferences__cell_footer: Styles.createViewStyle({
- paddingTop: 8,
- paddingRight: 24,
- paddingBottom: 24,
- paddingLeft: 24,
- }),
- preferences__cell_label_container: Styles.createViewStyle({
- paddingTop: 14,
- paddingRight: 12,
- paddingBottom: 14,
- paddingLeft: 24,
- flexGrow: 1,
- }),
-
- preferences__cell_label: Styles.createTextStyle({
- fontFamily: 'DINPro',
- fontSize: 20,
- fontWeight: '900',
- lineHeight: 26,
- letterSpacing: -0.2,
- color: colors.white,
- }),
- preferences__cell_footer_label: Styles.createTextStyle({
- fontFamily: 'Open Sans',
- fontSize: 13,
- fontWeight: '600',
- lineHeight: 20,
- letterSpacing: -0.2,
- color: colors.white80,
- }),
-};