summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
authorOskar Nyberg <oskar@mullvad.net>2020-02-12 13:07:42 +0100
committerOskar Nyberg <oskar@mullvad.net>2020-02-12 21:12:12 +0100
commit62352061c6abf873df3bbce4113c9e02334cc025 (patch)
tree8f09914c08fd9ae2877e9e474a5a60bd4774ee2d /gui/src
parentde59f4a1528f062f50044366f024c786fbc30927 (diff)
downloadmullvadvpn-62352061c6abf873df3bbce4113c9e02334cc025.tar.xz
mullvadvpn-62352061c6abf873df3bbce4113c9e02334cc025.zip
Change color of buttons in wireguard view
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/renderer/components/WireguardKeys.tsx12
1 files changed, 6 insertions, 6 deletions
diff --git a/gui/src/renderer/components/WireguardKeys.tsx b/gui/src/renderer/components/WireguardKeys.tsx
index 4451b8e341..dacdfcdc72 100644
--- a/gui/src/renderer/components/WireguardKeys.tsx
+++ b/gui/src/renderer/components/WireguardKeys.tsx
@@ -78,24 +78,24 @@ export default class WireguardKeys extends Component<IProps> {
<View style={styles.wgkeys__row}>{this.getGenerateButton()}</View>
<View style={styles.wgkeys__row}>
- <AppButton.GreenButton
+ <AppButton.BlueButton
disabled={this.isVerifyButtonDisabled()}
onPress={this.getOnVerifyKeyCb()}>
<AppButton.Label>
{messages.pgettext('wireguard-key-view', 'Verify key')}
</AppButton.Label>
- </AppButton.GreenButton>
+ </AppButton.BlueButton>
</View>
<View style={styles.wgkeys__row}>
<AppButton.BlockingButton
disabled={this.props.isOffline}
onPress={this.props.onVisitWebsiteKey}>
- <AppButton.GreenButton>
+ <AppButton.BlueButton>
<AppButton.Label>
{messages.pgettext('wireguard-key-view', 'Manage keys')}
</AppButton.Label>
<AppButton.Icon source="icon-extLink" height={16} width={16} />
- </AppButton.GreenButton>
+ </AppButton.BlueButton>
</AppButton.BlockingButton>
</View>
</View>
@@ -155,10 +155,10 @@ export default class WireguardKeys extends Component<IProps> {
private busyButton(message: string) {
return (
- <AppButton.GreenButton disabled={true}>
+ <AppButton.BlueButton disabled={true}>
<AppButton.Label>{message}</AppButton.Label>
<AppButton.Icon source="icon-spinner" height={16} width={16} />
- </AppButton.GreenButton>
+ </AppButton.BlueButton>
);
}