Commit 5e22e2cf by Mai Hoang Thai Ha

fixed review

parent be7ba250
$bg-primary: #0d6efd;
$text-color-white: #fff;
.ribbon {
text-align: center;
......@@ -65,15 +63,15 @@ $text-color-white: #fff;
}
}
.active {
background: $bg-primary;
color: $text-color-white;
background: #0d6efd;
color: #fff;
.circle {
color: $bg-primary;
color: #0d6efd;
background-color: #fff;
}
&::after {
border-left-color: $bg-primary;
color: $text-color-white;
border-left-color: #0d6efd;
color: #fff;
}
}
}
......
......@@ -30,7 +30,7 @@
.col-2
= f.label :cv, 'Cv: ', class: 'form-label label'
.col-10
= f.file_field :cv, accept: 'application/pdf, application/msword, application/zip, application/xls, application/xlsx'
= f.file_field :cv, accept: ApplyJob::ACCEPT_CONTENT_TYPE
span.form-control
= url_for(@apply.cv)
......
......@@ -28,7 +28,7 @@
.col-2
= f.label :cv, class: 'form-label label'
.col-10
= f.file_field :cv, accept: 'application/pdf, application/msword, application/zip, application/xls, application/xlsx', class: 'form-control'
= f.file_field :cv, accept: ApplyJob::ACCEPT_CONTENT_TYPE, class: 'form-control'
= f.submit 'Confirm', class: 'btn btn-primary w-25 my-4 btn-height'
= render 'validate_form'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment