diff options
Diffstat (limited to 'gui/src/renderer/components/cell')
| -rw-r--r-- | gui/src/renderer/components/cell/Input.tsx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gui/src/renderer/components/cell/Input.tsx b/gui/src/renderer/components/cell/Input.tsx index c57d552866..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 { @@ -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> |
