summaryrefslogtreecommitdiffhomepage
path: root/app/components/SelectLocation.js
diff options
context:
space:
mode:
authoranderklander <anderklander@gmail.com>2018-03-26 14:24:19 +0200
committeranderklander <anderklander@gmail.com>2018-04-11 13:45:41 +0200
commit2254e47dbca7277ff41f432e498f4291da327800 (patch)
tree4e545abbeb85a7165aada0ee1526462fdeaf0548 /app/components/SelectLocation.js
parent63fdf393545bacae79d00696ed03a3509f25aa45 (diff)
downloadmullvadvpn-2254e47dbca7277ff41f432e498f4291da327800.tar.xz
mullvadvpn-2254e47dbca7277ff41f432e498f4291da327800.zip
Added hoverStyle to expand-chevron in selectlocation
Diffstat (limited to 'app/components/SelectLocation.js')
-rw-r--r--app/components/SelectLocation.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/components/SelectLocation.js b/app/components/SelectLocation.js
index 7a547e4e6f..06d3707a44 100644
--- a/app/components/SelectLocation.js
+++ b/app/components/SelectLocation.js
@@ -163,8 +163,8 @@ export default class SelectLocation extends React.Component<SelectLocationProps,
{ relayCountry.cities.length > 1 ?
isExpanded ?
- <Img style={styles.collapse_button} onPress={ handleCollapse } source='icon-chevron-up' height='24' width='24' /> :
- <Img style={styles.collapse_button} onPress={ handleCollapse } source='icon-chevron-down' height='24' width='24' />
+ <Img style={styles.collapse_button} hoverStyle={styles.expand_chevron_hover} onPress={ handleCollapse } source='icon-chevron-up' height='24' width='24' /> :
+ <Img style={styles.collapse_button} hoverStyle={styles.expand_chevron_hover} onPress={ handleCollapse } source='icon-chevron-down' height='24' width='24' />
: null }
</CellButton>