summaryrefslogtreecommitdiffhomepage
path: root/app/components/AppButtonStyles.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/AppButtonStyles.js
parente84e87f4ce5a8c242f756566cdc6fb59a45f7bea (diff)
downloadmullvadvpn-71592249b2dd669b6f24f37bfb7b0f4e43b74998.tar.xz
mullvadvpn-71592249b2dd669b6f24f37bfb7b0f4e43b74998.zip
Add workspaces
Diffstat (limited to 'app/components/AppButtonStyles.js')
-rw-r--r--app/components/AppButtonStyles.js63
1 files changed, 0 insertions, 63 deletions
diff --git a/app/components/AppButtonStyles.js b/app/components/AppButtonStyles.js
deleted file mode 100644
index a007d4cdf3..0000000000
--- a/app/components/AppButtonStyles.js
+++ /dev/null
@@ -1,63 +0,0 @@
-// @flow
-
-import { Styles } from 'reactxp';
-import { colors } from '../config';
-
-export default {
- red: Styles.createViewStyle({
- backgroundColor: colors.red,
- }),
- redHover: Styles.createViewStyle({
- backgroundColor: colors.red95,
- }),
- green: Styles.createViewStyle({
- backgroundColor: colors.green,
- }),
- greenHover: Styles.createViewStyle({
- backgroundColor: colors.green90,
- }),
- blue: Styles.createViewStyle({
- backgroundColor: colors.blue80,
- }),
- blueHover: Styles.createViewStyle({
- backgroundColor: colors.blue60,
- }),
- white80: Styles.createViewStyle({
- color: colors.white80,
- }),
- white: Styles.createViewStyle({
- color: colors.white,
- }),
- icon: Styles.createViewStyle({
- position: 'absolute',
- alignSelf: 'flex-end',
- right: 8,
- marginLeft: 8,
- }),
- iconTransparent: Styles.createViewStyle({
- position: 'absolute',
- alignSelf: 'flex-end',
- right: 42,
- }),
- common: Styles.createViewStyle({
- cursor: 'default',
- paddingTop: 9,
- paddingLeft: 9,
- paddingRight: 9,
- paddingBottom: 9,
- borderRadius: 4,
- flex: 1,
- flexDirection: 'column',
- alignContent: 'center',
- justifyContent: 'center',
- }),
-
- label: Styles.createTextStyle({
- alignSelf: 'center',
- fontFamily: 'DINPro',
- fontSize: 20,
- fontWeight: '900',
- lineHeight: 26,
- flex: 1,
- }),
-};