Skip to content

Commit 26a20c0

Browse files
authored
Merge pull request #4615 from topcoder-platform/develop
TCO21
2 parents 12d3203 + 9afd8d5 commit 26a20c0

File tree

6 files changed

+16
-1
lines changed

6 files changed

+16
-1
lines changed

__tests__/shared/components/Header/__snapshots__/index.jsx.snap

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,10 @@ exports[`Default render 1`] = `
6565
"href": "/community/taas",
6666
"title": "Gig Work",
6767
},
68+
Object {
69+
"href": "/community/practice",
70+
"title": "Practice",
71+
},
6872
],
6973
"title": "Compete",
7074
},

config/default.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -314,6 +314,10 @@ module.exports = {
314314
title: 'Gig Work',
315315
href: '/community/taas',
316316
},
317+
{
318+
title: 'Practice',
319+
href: '/community/practice',
320+
},
317321
],
318322
},
319323
{

config/production.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,10 @@ module.exports = {
117117
title: 'Gig Work',
118118
href: '/community/taas',
119119
},
120+
{
121+
title: 'Practice',
122+
href: '/community/practice',
123+
},
120124
],
121125
},
122126
{

src/shared/components/Contentful/Tabs/themes/underline.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ $text-color-pannel: #4a4a4a;
4848

4949
&:hover,
5050
&.selected {
51-
border-bottom: 5px solid #229174;
51+
border-bottom: 5px solid #43d7b0;
52+
border-radius: 3px;
5253
}
5354

5455
p {

src/shared/components/Countdown/themes/TCO21.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ $container-background-yello: #fce217;
5656
.time-label {
5757
color: #2a2a2a;
5858
font-size: 14px;
59+
font-weight: 500;
5960
letter-spacing: 0.5px;
6061
line-height: 18px;
6162
text-align: center;

src/shared/containers/Contentful/MenuLoader/index.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ class MenuLoaderContainer extends React.Component {
116116
setOpenMore={this.handleChangeOpenMore}
117117
loggedIn={!_.isEmpty(auth.profile)}
118118
profileHandle={auth.profile ? auth.profile.handle : ''}
119+
logoLink={fields.logoLink}
119120
/>
120121
</div>
121122
);

0 commit comments

Comments
 (0)