aboutsummaryrefslogtreecommitdiffstats
path: root/packages/website/ts
diff options
context:
space:
mode:
authorFred Carlsen <fred@sjelfull.no>2018-12-17 18:30:11 +0800
committerFred Carlsen <fred@sjelfull.no>2018-12-17 18:30:11 +0800
commit8988650c8bce9006ec15519edd5c5d05ce1e9341 (patch)
tree3604989d01875e9f4bae0fc6dee23de4b7813ba6 /packages/website/ts
parent28bad6567bd38e327c93c7dfb7c89c5b68d0a8a3 (diff)
downloaddexon-0x-contracts-8988650c8bce9006ec15519edd5c5d05ce1e9341.tar
dexon-0x-contracts-8988650c8bce9006ec15519edd5c5d05ce1e9341.tar.gz
dexon-0x-contracts-8988650c8bce9006ec15519edd5c5d05ce1e9341.tar.bz2
dexon-0x-contracts-8988650c8bce9006ec15519edd5c5d05ce1e9341.tar.lz
dexon-0x-contracts-8988650c8bce9006ec15519edd5c5d05ce1e9341.tar.xz
dexon-0x-contracts-8988650c8bce9006ec15519edd5c5d05ce1e9341.tar.zst
dexon-0x-contracts-8988650c8bce9006ec15519edd5c5d05ce1e9341.zip
Fix newsletter input color in light theme
Diffstat (limited to 'packages/website/ts')
-rw-r--r--packages/website/ts/@next/components/newsletter_form.tsx20
1 files changed, 15 insertions, 5 deletions
diff --git a/packages/website/ts/@next/components/newsletter_form.tsx b/packages/website/ts/@next/components/newsletter_form.tsx
index 859cd1d9c..6dc4bf678 100644
--- a/packages/website/ts/@next/components/newsletter_form.tsx
+++ b/packages/website/ts/@next/components/newsletter_form.tsx
@@ -1,13 +1,20 @@
import * as React from 'react';
-import styled from 'styled-components';
+import styled, { withTheme } from 'styled-components';
import { colors } from 'ts/style/colors';
+import {ThemeValuesInterface} from 'ts/@next/components/siteWrap';
+
+interface FormProps {
+ theme: ThemeValuesInterface;
+}
+
interface InputProps {
isSubmitted: boolean;
name: string;
type: string;
label: string;
+ textColor: string;
}
interface ArrowProps {
@@ -26,18 +33,19 @@ const Input = React.forwardRef((props: InputProps, ref: React.Ref<HTMLInputEleme
);
});
-export class NewsletterForm extends React.Component {
+class Form extends React.Component<FormProps> {
public emailInput = React.createRef<HTMLInputElement>();
public state = {
isSubmitted: false,
};
public render(): React.ReactNode {
const {isSubmitted} = this.state;
+ const {theme} = this.props;
return (
<StyledForm onSubmit={this._onSubmitAsync.bind(this)}>
<InputWrapper>
- <Input isSubmitted={isSubmitted} name="email" type="email" label="Email Address" ref={this.emailInput} required={true} />
+ <Input isSubmitted={isSubmitted} name="email" type="email" label="Email Address" ref={this.emailInput} required={true} textColor={theme.textColor} />
<SubmitButton>
<Arrow isSubmitted={isSubmitted} width="22" height="17" fill="none" xmlns="http://www.w3.org/2000/svg">
@@ -74,6 +82,8 @@ export class NewsletterForm extends React.Component {
}
}
+export const NewsletterForm = withTheme(Form);
+
const StyledForm = styled.form`
appearance: none;
border: 0;
@@ -82,12 +92,12 @@ const StyledForm = styled.form`
margin-top: 27px;
`;
-const StyledInput = styled.input`
+const StyledInput = styled.input<InputProps>`
appearance: none;
background-color: transparent;
border: 0;
border-bottom: 1px solid #393939;
- color: #fff;
+ color: ${props => props.textColor || '#fff'};
font-size: 1.294117647rem;
padding: 15px 0;
outline: none;