Skip to content

Commit 272bdba

Browse files
committed
feat/srt-82-keep-ui-feedback-landing-page: header/contact/homepage feedback issues fixed
1 parent c0c0c10 commit 272bdba

File tree

5 files changed

+27
-6
lines changed

5 files changed

+27
-6
lines changed

src/components/Contact.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ const Contact = ({
4646
<h1>{title}</h1>
4747
<EmailForm
4848
label="Email"
49-
placeholder="[email protected]"
49+
placeholder="Enter email address"
5050
onSubmit={signupMailingList}
5151
requestStates={ajaxRequestStates}
5252
request={actionTypes.SIGNUP_MAILING_LIST}

src/components/Header.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ export const HeaderTemplate = ({ navItems = [] }) => {
169169
</li>
170170
<li className="nav-item">
171171
<a
172-
href="#"
172+
href="https://dashboard.keep.network/"
173173
className="btn btn-primary btn-small nav-item"
174174
rel="noopener noreferrer"
175175
>

src/css/forms.scss

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,10 @@
1919
font-size: 1rem;
2020
font-weight: 400;
2121
line-height: 1.25rem;
22-
@include placeholder(#b4b4b4);
22+
color: $black;
23+
&::placeholder {
24+
color: $grey-30;
25+
}
2326
}
2427
}
2528

@@ -54,7 +57,7 @@
5457
border-color: $error-color;
5558

5659
&:focus {
57-
border-color: transparent;
60+
border-color: $black;
5861
}
5962
}
6063
}

src/css/home.scss

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,12 +72,22 @@
7272
margin-top: 64px;
7373
margin-bottom: 72px;
7474

75+
ul {
76+
margin-bottom: 11rem;
77+
}
78+
7579
.cta-links {
7680
li {
7781
list-style: none;
7882
margin: 0 0 1em;
7983
}
8084
}
85+
86+
@media (max-width: #{$bp-medium}) {
87+
ul {
88+
margin-bottom: 5rem;
89+
}
90+
}
8191
}
8292

8393
.ticker {
@@ -529,8 +539,7 @@
529539

530540
&__left {
531541
height: calc((var(--circle-width) * 1.1));
532-
background: url("../images/w-image.jpg") no-repeat center;
533-
background-size: cover;
542+
background: url("../images/w-image.svg") no-repeat left;
534543
transform: translate3d(-100px, -50%, 0);
535544

536545
&.aos-animate {

src/images/w-image.svg

Lines changed: 9 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)