Skip to content

Commit f30d652

Browse files
Merge pull request #5819 from topcoder-platform/thrive-spooky1-p0-3
Thrive spooky1 p0 3
2 parents 903755e + 61b4c8e commit f30d652

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

src/shared/components/Contentful/ArticleCard/themes/article_small.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
border-radius: 10px;
77
overflow: hidden;
88
position: relative;
9+
cursor: pointer;
910

1011
@include xs-to-sm {
1112
background: #f4f4f4;

src/shared/containers/EDU/Search.jsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,12 @@ export default class EDUSearch extends React.Component {
4444
// eslint-disable-next-line no-nested-ternary
4545
urlQuery.tags = _.isArray(urlQuery.tags)
4646
? urlQuery.tags : (urlQuery.tags ? [urlQuery.tags] : []);
47+
if (urlQuery.phrase && urlQuery.phrase.length > 115) {
48+
urlQuery.phrase = urlQuery.phrase.substring(0, 114);
49+
}
50+
if (urlQuery.title && urlQuery.title.length > 115) {
51+
urlQuery.title = urlQuery.title.substring(0, 114);
52+
}
4753
this.setState({
4854
query: urlQuery,
4955
});

src/shared/containers/EDU/styles/tracks.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
text-transform: uppercase;
5656

5757
@include xs-to-sm {
58-
font-size: 70px;
59-
letter-spacing: 0.44px;
60-
line-height: 60px;
58+
font-size: 42px;
59+
letter-spacing: 0;
60+
line-height: 38px;
6161
margin-top: 533px;
6262
}
6363
}

0 commit comments

Comments
 (0)