diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2018-08-03 15:34:17 +0200 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2018-08-08 16:25:34 +0200 |
| commit | 96e45e1243ea48661987a0724ce10f9a2da7f106 (patch) | |
| tree | 3dd4861ce18833caef4914961a674d1cd02d73bc | |
| parent | e456e241a93cd744b392086a6c6f9535ed760280 (diff) | |
| download | mullvadvpn-96e45e1243ea48661987a0724ce10f9a2da7f106.tar.xz mullvadvpn-96e45e1243ea48661987a0724ce10f9a2da7f106.zip | |
Fix non-clickable padding area around dropdown items
| -rw-r--r-- | app/components/LoginStyles.js | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/app/components/LoginStyles.js b/app/components/LoginStyles.js index 4538f9b82a..61e5026a71 100644 --- a/app/components/LoginStyles.js +++ b/app/components/LoginStyles.js @@ -87,12 +87,13 @@ export default { backgroundColor: colors.darkBlue, }, account_dropdown__item: { - paddingTop: 10, - paddingRight: 12, - paddingLeft: 12, - paddingBottom: 12, + paddingTop: 0, + paddingRight: 0, + paddingLeft: 0, + paddingBottom: 0, marginBottom: 0, flexDirection: 'row', + alignItems: 'stretch', backgroundColor: colors.white60, cursor: 'default', }, @@ -102,6 +103,11 @@ export default { account_dropdown__remove: { justifyContent: 'center', color: colors.blue40, + paddingTop: 10, + paddingRight: 12, + paddingBottom: 12, + paddingLeft: 12, + marginLeft: 0, }, account_dropdown__remove_cell_hover: { color: colors.blue60, @@ -166,6 +172,11 @@ export default { borderWidth: 0, textAlign: 'left', marginLeft: 0, + paddingTop: 10, + paddingRight: 0, + paddingLeft: 12, + paddingBottom: 12, + cursor: 'default', }, }), }; |
