Skip to content

Commit cf7ef0f

Browse files
committed
1 parent 4d920d6 commit cf7ef0f

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

src/components/Pagination/styles.module.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
.pagination {
44
display: flex;
5+
flex-wrap: wrap;
6+
margin-bottom: -10px;
57

68
.page {
79
padding: 0 10px;
@@ -15,6 +17,9 @@
1517
border-color: #2A2A2A;
1618
}
1719

20+
> button[class] {
21+
margin-bottom: 10px;
22+
}
1823
.next {
1924
margin-left: 5px;
2025

src/components/SkillsList/index.jsx

Lines changed: 1 addition & 0 deletions
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

Lines changed: 3 additions & 1 deletion
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

0 commit comments

Comments
 (0)