Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 1fe3070

Browse files
committed
fix: issue #376
1 parent 07dd2bd commit 1fe3070

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

src/routes/CreateNewTeam/pages/InputSkills/components/SkillsList/index.jsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import React, { useCallback, useState } from "react";
88
import PT from "prop-types";
99
import SkillItem from "../SkillItem";
1010
import ItemList from "../../../../components/ItemList";
11+
import "./styles.module.scss";
1112
import { formatPlural } from "utils/format";
1213

1314
function SkillsList({ skills, selectedSkills, toggleSkill }) {
@@ -38,6 +39,11 @@ function SkillsList({ skills, selectedSkills, toggleSkill }) {
3839
: null
3940
}
4041
>
42+
<p styleName="subtitle">
43+
Please select one or more essential skills you require your talent to
44+
have. Topcoder will match to profiles which contain most or all of these
45+
skills.
46+
</p>
4147
{filteredSkills.map(({ id, name }) => (
4248
<SkillItem
4349
key={id}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.subtitle {
2+
position: relative;
3+
font-size: 12px;
4+
line-height: normal;
5+
margin: 10px 24px 0px;
6+
top: -15px;
7+
}

0 commit comments

Comments
 (0)