summaryrefslogtreecommitdiffhomepage
path: root/gui/src
diff options
context:
space:
mode:
authorOskar Nyberg <oskar@mullvad.net>2021-12-28 14:32:47 +0100
committerOskar Nyberg <oskar@mullvad.net>2022-01-03 15:14:45 +0100
commitd5ba22a35b6b81a1e295cff7ecadbd40a8f0c872 (patch)
tree9e235db7aa7e603f3dda3513ce1f650717de83f1 /gui/src
parentda99db083845b57814003f87ffe5a927b0c56293 (diff)
downloadmullvadvpn-d5ba22a35b6b81a1e295cff7ecadbd40a8f0c872.tar.xz
mullvadvpn-d5ba22a35b6b81a1e295cff7ecadbd40a8f0c872.zip
Make custom dns textarea fill space until button
Diffstat (limited to 'gui/src')
-rw-r--r--gui/src/renderer/components/cell/Input.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/src/renderer/components/cell/Input.tsx b/gui/src/renderer/components/cell/Input.tsx
index 81e5f76e0f..fbc6849de3 100644
--- a/gui/src/renderer/components/cell/Input.tsx
+++ b/gui/src/renderer/components/cell/Input.tsx
@@ -205,7 +205,6 @@ const StyledInputWrapper = styled.div({}, (props: { marginLeft: number }) => ({
flex: 1,
width: '171px',
marginLeft: props.marginLeft + 'px',
- marginRight: '25px',
lineHeight: '24px',
minHeight: '24px',
fontFamily: 'Open Sans',
@@ -229,7 +228,7 @@ const StyledTextArea = styled.textarea({}, (props: { invalid?: boolean }) => ({
fontWeight: 'normal',
fontSize: '16px',
resize: 'none',
- padding: '14px 0',
+ padding: '14px 25px 14px 0',
color: props.invalid ? colors.red : 'auto',
}));
@@ -238,6 +237,7 @@ const StyledInputFiller = styled.div({
overflowWrap: 'break-word',
minHeight: '24px',
color: 'transparent',
+ marginRight: '25px',
});
interface IRowInputProps {