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

Commit c216704

Browse files
committed
fix: issue#54
1 parent 4d920d6 commit c216704

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

src/components/Pagination/styles.module.scss

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
.pagination {
44
display: flex;
5+
flex-wrap: wrap;
56

67
.page {
78
padding: 0 10px;
@@ -15,6 +16,9 @@
1516
border-color: #2A2A2A;
1617
}
1718

19+
> button {
20+
margin-bottom: 10px !important;
21+
}
1822
.next {
1923
margin-left: 5px;
2024

src/components/SkillsList/index.jsx

+1
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ const SkillsList = ({ requiredSkills, skills, limit = 3 }) => {
101101
<div styleName="skills-section">
102102
<div styleName="skills-title">Required Job Skills</div>
103103
<ul styleName="skills-list">
104+
{!requiredSkills.length && <li>None</li>}
104105
{requiredSkills.map((skill) => (
105106
<li key={skill.id}>
106107
{_.find(skills, { id: skill.id }) ? (

src/components/SkillsList/styles.module.scss

+3-1
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,12 @@
2222

2323
.popover-content {
2424
display: flex;
25-
padding: 24px;
25+
flex-wrap: wrap;
26+
padding: 4px 24px 24px;
2627
}
2728

2829
.skills-section {
30+
margin-top: 20px;
2931
padding-right: 32px;
3032
}
3133

src/routes/MyTeamsList/styles.module.scss

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@
2323
}
2424

2525
.pagination-wrapper {
26-
margin-top: 20px;
27-
margin-right: 20px;
26+
margin: 20px 20px -10px 0;
2827
display: flex;
2928
justify-content: flex-end;
3029
}

0 commit comments

Comments
 (0)