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

Commit 1bdf6cd

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

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

src/components/Pagination/styles.module.scss

+10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
@import "styles/include";
22

3+
.button-margin {
4+
margin-top: 10px;
5+
}
6+
37
.pagination {
48
display: flex;
9+
flex-wrap: wrap;
10+
margin-bottom: -10px;
511

612
.page {
713
padding: 0 10px;
814
margin: 0 5px;
915
min-width: 30px;
16+
17+
@extend .button-margin
1018
}
1119

1220
.current {
@@ -16,6 +24,7 @@
1624
}
1725

1826
.next {
27+
@extend .button-margin
1928
margin-left: 5px;
2029

2130
> svg {
@@ -29,6 +38,7 @@
2938

3039
.prev {
3140
margin-right: 5px;
41+
@extend .button-margin
3242

3343
> svg {
3444
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)