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

Commit c0de69d

Browse files
authored
Merge pull request #59 from yoution/hotfix/issue-54
fix: issue#54
2 parents a4e0995 + a03b496 commit c0de69d

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

src/components/Pagination/styles.module.scss

+6-1
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@
22

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

68
.page {
79
padding: 0 10px;
8-
margin: 0 5px;
10+
margin: 0 5px 10px;
911
min-width: 30px;
12+
1013
}
1114

1215
.current {
@@ -17,6 +20,7 @@
1720

1821
.next {
1922
margin-left: 5px;
23+
margin-bottom: 10px;
2024

2125
> svg {
2226
transform: rotate(-90deg);
@@ -29,6 +33,7 @@
2933

3034
.prev {
3135
margin-right: 5px;
36+
margin-bottom: 10px;
3237

3338
> svg {
3439
margin-right: 3px;

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

0 commit comments

Comments
 (0)