summaryrefslogtreecommitdiffhomepage
path: root/app/components/SelectLocationStyles.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/SelectLocationStyles.js
parente84e87f4ce5a8c242f756566cdc6fb59a45f7bea (diff)
downloadmullvadvpn-71592249b2dd669b6f24f37bfb7b0f4e43b74998.tar.xz
mullvadvpn-71592249b2dd669b6f24f37bfb7b0f4e43b74998.zip
Add workspaces
Diffstat (limited to 'app/components/SelectLocationStyles.js')
-rw-r--r--app/components/SelectLocationStyles.js87
1 files changed, 0 insertions, 87 deletions
diff --git a/app/components/SelectLocationStyles.js b/app/components/SelectLocationStyles.js
deleted file mode 100644
index 57b0653a45..0000000000
--- a/app/components/SelectLocationStyles.js
+++ /dev/null
@@ -1,87 +0,0 @@
-// @flow
-
-import { Styles } from 'reactxp';
-import { colors } from '../config';
-
-export default {
- select_location: Styles.createViewStyle({
- backgroundColor: colors.darkBlue,
- flex: 1,
- }),
- container: Styles.createViewStyle({
- flexDirection: 'column',
- flex: 1,
- }),
- title_header: Styles.createViewStyle({
- paddingBottom: 0,
- }),
- subtitle_header: Styles.createViewStyle({
- paddingTop: 0,
- }),
- content: Styles.createViewStyle({
- overflow: 'visible',
- }),
- relay_status: Styles.createViewStyle({
- width: 16,
- height: 16,
- borderRadius: 8,
- marginLeft: 4,
- marginRight: 4,
- marginTop: 20,
- marginBottom: 20,
- }),
- relay_status__inactive: Styles.createViewStyle({
- backgroundColor: colors.red95,
- }),
- relay_status__active: Styles.createViewStyle({
- backgroundColor: colors.green90,
- }),
- tick_icon: Styles.createViewStyle({
- color: colors.white,
- marginLeft: 0,
- marginRight: 0,
- marginTop: 15.5,
- marginBottom: 15.5,
- }),
- country: Styles.createViewStyle({
- flexDirection: 'column',
- flex: 0,
- }),
- collapse_button: Styles.createViewStyle({
- flex: 0,
- alignSelf: 'stretch',
- justifyContent: 'center',
- paddingRight: 16,
- paddingLeft: 16,
- }),
- cell: Styles.createViewStyle({
- paddingTop: 0,
- paddingBottom: 0,
- paddingLeft: 20,
- paddingRight: 0,
- }),
- sub_cell: Styles.createViewStyle({
- paddingTop: 0,
- paddingBottom: 0,
- paddingRight: 0,
- paddingLeft: 40,
- backgroundColor: colors.blue40,
- }),
- sub_cell__selected: Styles.createViewStyle({
- paddingTop: 0,
- paddingBottom: 0,
- paddingRight: 0,
- paddingLeft: 40,
- backgroundColor: colors.green,
- }),
- cell_selected: Styles.createViewStyle({
- paddingTop: 0,
- paddingBottom: 0,
- paddingLeft: 20,
- paddingRight: 0,
- backgroundColor: colors.green,
- }),
- expand_chevron_hover: Styles.createViewStyle({
- color: colors.white,
- }),
-};