diff --git a/__tests__/shared/components/Header/__snapshots__/index.jsx.snap b/__tests__/shared/components/Header/__snapshots__/index.jsx.snap index 8f8fa0afc8..a8b4bb9208 100644 --- a/__tests__/shared/components/Header/__snapshots__/index.jsx.snap +++ b/__tests__/shared/components/Header/__snapshots__/index.jsx.snap @@ -65,6 +65,10 @@ exports[`Default render 1`] = ` "href": "/community/taas", "title": "Gig Work", }, + Object { + "href": "/community/practice", + "title": "Practice", + }, ], "title": "Compete", }, diff --git a/config/default.js b/config/default.js index 80ecfe7eea..6c98706fe2 100644 --- a/config/default.js +++ b/config/default.js @@ -314,6 +314,10 @@ module.exports = { title: 'Gig Work', href: '/community/taas', }, + { + title: 'Practice', + href: '/community/practice', + }, ], }, { diff --git a/config/production.js b/config/production.js index 38f339d39c..63e11ad694 100644 --- a/config/production.js +++ b/config/production.js @@ -117,6 +117,10 @@ module.exports = { title: 'Gig Work', href: '/community/taas', }, + { + title: 'Practice', + href: '/community/practice', + }, ], }, { diff --git a/src/shared/components/Contentful/Tabs/themes/underline.scss b/src/shared/components/Contentful/Tabs/themes/underline.scss index 2ea6d8a19b..9c014b07d6 100644 --- a/src/shared/components/Contentful/Tabs/themes/underline.scss +++ b/src/shared/components/Contentful/Tabs/themes/underline.scss @@ -48,7 +48,8 @@ $text-color-pannel: #4a4a4a; &:hover, &.selected { - border-bottom: 5px solid #229174; + border-bottom: 5px solid #43d7b0; + border-radius: 3px; } p { diff --git a/src/shared/components/Countdown/themes/TCO21.scss b/src/shared/components/Countdown/themes/TCO21.scss index 01abb24ba4..4304871079 100644 --- a/src/shared/components/Countdown/themes/TCO21.scss +++ b/src/shared/components/Countdown/themes/TCO21.scss @@ -56,6 +56,7 @@ $container-background-yello: #fce217; .time-label { color: #2a2a2a; font-size: 14px; + font-weight: 500; letter-spacing: 0.5px; line-height: 18px; text-align: center; diff --git a/src/shared/containers/Contentful/MenuLoader/index.jsx b/src/shared/containers/Contentful/MenuLoader/index.jsx index a8bb7b45d3..35cef21d1e 100644 --- a/src/shared/containers/Contentful/MenuLoader/index.jsx +++ b/src/shared/containers/Contentful/MenuLoader/index.jsx @@ -116,6 +116,7 @@ class MenuLoaderContainer extends React.Component { setOpenMore={this.handleChangeOpenMore} loggedIn={!_.isEmpty(auth.profile)} profileHandle={auth.profile ? auth.profile.handle : ''} + logoLink={fields.logoLink} /> );