summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
authorOskar Nyberg <oskar@mullvad.net>2021-12-28 14:27:09 +0100
committerOskar Nyberg <oskar@mullvad.net>2022-01-03 15:14:45 +0100
commitda99db083845b57814003f87ffe5a927b0c56293 (patch)
tree24421e8e6dc471108ec48039373a6cc900fe5188 /gui/src
parent5e72bac67addd36682443568de651fc05cd6e207 (diff)
downloadmullvadvpn-da99db083845b57814003f87ffe5a927b0c56293.tar.xz
mullvadvpn-da99db083845b57814003f87ffe5a927b0c56293.zip
Change custom dns save icon
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/renderer/components/cell/Input.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/src/renderer/components/cell/Input.tsx b/gui/src/renderer/components/cell/Input.tsx
index c57d552866..81e5f76e0f 100644
--- a/gui/src/renderer/components/cell/Input.tsx
+++ b/gui/src/renderer/components/cell/Input.tsx
@@ -328,10 +328,10 @@ export function RowInput(props: IRowInputProps) {
</StyledInputWrapper>
<StyledSubmitButton onClick={submit}>
<ImageView
- source="icon-tick"
+ source="icon-check"
height={22}
- tintColor={colors.green}
- tintHoverColor={colors.green90}
+ tintColor={value === '' ? colors.blue60 : colors.blue}
+ tintHoverColor={value === '' ? colors.blue60 : colors.blue80}
/>
</StyledSubmitButton>
</StyledCellInputRowContainer>