diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2018-07-18 15:07:37 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2018-08-15 17:39:38 +0200 |
| commit | 71592249b2dd669b6f24f37bfb7b0f4e43b74998 (patch) | |
| tree | a6097dc7e5d94d06e99c65fdfe160e824395f50c /app/components/SupportStyles.js | |
| parent | e84e87f4ce5a8c242f756566cdc6fb59a45f7bea (diff) | |
| download | mullvadvpn-71592249b2dd669b6f24f37bfb7b0f4e43b74998.tar.xz mullvadvpn-71592249b2dd669b6f24f37bfb7b0f4e43b74998.zip | |
Add workspaces
Diffstat (limited to 'app/components/SupportStyles.js')
| -rw-r--r-- | app/components/SupportStyles.js | 131 |
1 files changed, 0 insertions, 131 deletions
diff --git a/app/components/SupportStyles.js b/app/components/SupportStyles.js deleted file mode 100644 index 718659157a..0000000000 --- a/app/components/SupportStyles.js +++ /dev/null @@ -1,131 +0,0 @@ -// @flow - -import { Styles } from 'reactxp'; -import { colors } from '../config'; - -export default { - support: Styles.createViewStyle({ - backgroundColor: colors.darkBlue, - flex: 1, - }), - support__container: Styles.createViewStyle({ - display: 'flex', - flexDirection: 'column', - flex: 1, - }), - support__content: Styles.createViewStyle({ - flex: 1, - display: 'flex', - flexDirection: 'column', - justifyContent: 'space-between', - }), - support__form: Styles.createViewStyle({ - display: 'flex', - flex: 1, - flexDirection: 'column', - }), - support__form_row: Styles.createViewStyle({ - paddingLeft: 22, - paddingRight: 22, - marginBottom: 12, - }), - support__form_row_email: Styles.createViewStyle({ - paddingLeft: 22, - paddingRight: 22, - marginBottom: 12, - }), - support__form_row_message: Styles.createViewStyle({ - flex: 1, - paddingLeft: 22, - paddingRight: 22, - }), - support__form_message_scroll_wrap: Styles.createViewStyle({ - flex: 1, - display: 'flex', - borderRadius: 4, - overflow: 'hidden', - }), - support__footer: Styles.createViewStyle({ - paddingTop: 16, - paddingBottom: 16, - paddingLeft: 24, - paddingRight: 24, - flexDirection: 'column', - flex: 0, - }), - support__status_icon: Styles.createViewStyle({ - alignItems: 'center', - marginBottom: 32, - }), - view_logs_button: Styles.createViewStyle({ - marginBottom: 16, - }), - edit_message_button: Styles.createViewStyle({ - marginBottom: 16, - }), - support__form_email: Styles.createTextStyle({ - flex: 1, - borderRadius: 4, - overflow: 'hidden', - paddingTop: 14, - paddingLeft: 14, - paddingRight: 14, - paddingBottom: 14, - fontFamily: 'Open Sans', - fontSize: 13, - fontWeight: '600', - lineHeight: 26, - color: colors.blue, - backgroundColor: colors.white, - }), - support__form_message: Styles.createTextStyle({ - paddingTop: 14, - paddingLeft: 14, - paddingRight: 14, - paddingBottom: 14, - fontFamily: 'Open Sans', - fontSize: 13, - fontWeight: '600', - color: colors.blue, - backgroundColor: colors.white, - flex: 1, - }), - support__sent_message: Styles.createTextStyle({ - fontFamily: 'Open Sans', - fontSize: 13, - fontWeight: '600', - overflow: 'visible', - color: colors.white60, - lineHeight: 20, - letterSpacing: -0.2, - }), - support__sent_email: Styles.createTextStyle({ - fontWeight: '900', - color: colors.white, - }), - support__status_security__secure: Styles.createTextStyle({ - fontFamily: 'Open Sans', - fontSize: 16, - fontWeight: '800', - lineHeight: 22, - marginBottom: 4, - color: colors.green, - }), - support__send_status: Styles.createTextStyle({ - fontFamily: 'DINPro', - fontSize: 38, - fontWeight: '900', - maxHeight: 'calc(1.16em * 2)', - overflow: 'visible', - letterSpacing: -0.9, - color: colors.white, - marginBottom: 4, - }), - support__no_email_warning: Styles.createTextStyle({ - fontFamily: 'Open Sans', - fontSize: 13, - lineHeight: 16, - color: colors.white80, - marginBottom: 12, - }), -}; |
