Skip to content

Commit 0633ef3

Browse files
committed
Apply page fixes
1 parent 6f97511 commit 0633ef3

File tree

5 files changed

+28
-6
lines changed

5 files changed

+28
-6
lines changed
-176 Bytes
Binary file not shown.
+17
Loading

src/shared/components/Gigs/GigApply/index.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import LoadingIndicator from 'components/LoadingIndicator';
1919
import './style.scss';
2020
import bigCheckmark from 'assets/images/big-checkmark.png';
2121
import SadFace from 'assets/images/sad-face-icon.svg';
22-
import backArrowGig from 'assets/images/back-arrow-gig-apply.png';
22+
import BackArrowGig from 'assets/images/back-arrow-gig-apply.svg';
2323

2424
export default function GigApply(props) {
2525
const {
@@ -38,8 +38,8 @@ export default function GigApply(props) {
3838
</div>
3939
) : (
4040
<div styleName="wrap">
41-
<Link to={`${config.GIGS_PAGES_PATH}/${job.slug}`} styleName="back-link"><img src={backArrowGig} alt="back-arrow-icon" /> GIG DETAILS</Link>
4241
<h2>{job.name}</h2>
42+
<Link to={`${config.GIGS_PAGES_PATH}/${job.slug}`} styleName="back-link"><BackArrowGig /> GIG DETAILS</Link>
4343
<div styleName="separator" />
4444
{
4545
application ? (

src/shared/components/Gigs/GigApply/style.scss

+9-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@
5959
h2 {
6060
color: #26b3c5;
6161
text-align: center;
62-
margin-top: 6px;
63-
margin-bottom: 83px;
62+
margin-top: 47px;
63+
margin-bottom: 31px;
6464

6565
@include xs-to-md {
6666
text-align: left;
@@ -75,6 +75,13 @@
7575
text-decoration: none;
7676
line-height: 40px;
7777
margin-bottom: 12px;
78+
display: flex;
79+
align-items: center;
80+
81+
svg {
82+
width: 8px;
83+
margin-right: 6px;
84+
}
7885
}
7986

8087
.separator {

src/shared/containers/Gigs/RecruitCRMJobApply.jsx

-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ class RecruitCRMJobApplyContainer extends React.Component {
5757
[key]: value,
5858
},
5959
}));
60-
// run form validation
61-
this.validateForm();
6260
}
6361

6462
onApplyClick() {

0 commit comments

Comments
 (0)