Skip to content

Commit fa480a9

Browse files
author
Maksym Mykhailenko
committed
fix: progressive registration footer
ref issue #3893
1 parent 4c0c95f commit fa480a9

File tree

2 files changed

+16
-18
lines changed

2 files changed

+16
-18
lines changed

src/projects/create/components/UpdateUserInfo.js

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -75,19 +75,10 @@ class UpdateUserInfo extends Component {
7575
buttonExtraClassName="tc-btn-md"
7676
/>
7777
{!isTopcoderUser && (
78-
<span styleName="title-4">
78+
<p styleName="bottom-note">
7979
Were you looking to join Topcoder’s freelancer community and
80-
participate in work?
81-
</span>
82-
)}
83-
{!isTopcoderUser && (
84-
<a
85-
href={`//www.${DOMAIN}`}
86-
className="tc-btn tc-btn-primary tc-btn-md"
87-
styleName="btn-yes-topcoder"
88-
>
89-
Yes
90-
</a>
80+
participate in work? <a href={`//www.${DOMAIN}`}>Click here</a>
81+
</p>
9182
)}
9283
</div>
9384
</div>

src/projects/create/components/UpdateUserInfo.scss

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,20 @@
4343
margin-bottom: 60px;
4444
}
4545

46-
.title-4 {
47-
margin-top: 30px;
48-
margin-bottom: 20px;
49-
}
46+
.bottom-note {
47+
color: $tc-gray-90;
48+
font-size: 14px;
49+
line-height: 150%;
50+
max-width: 380px;
51+
padding: 10 * $base-unit 0;
52+
text-align: center;
5053

51-
.btn-yes-topcoder {
52-
width: auto;
54+
> a,
55+
> a:visited,
56+
> a:hover,
57+
> a:active {
58+
color: $tc-dark-blue;
59+
}
5360
}
5461

5562
.back-button {

0 commit comments

Comments
 (0)