Commit 5e22e2cf by Mai Hoang Thai Ha

fixed review

parent be7ba250
$bg-primary: #0d6efd;
$text-color-white: #fff;
.ribbon { .ribbon {
text-align: center; text-align: center;
...@@ -65,15 +63,15 @@ $text-color-white: #fff; ...@@ -65,15 +63,15 @@ $text-color-white: #fff;
} }
} }
.active { .active {
background: $bg-primary; background: #0d6efd;
color: $text-color-white; color: #fff;
.circle { .circle {
color: $bg-primary; color: #0d6efd;
background-color: #fff; background-color: #fff;
} }
&::after { &::after {
border-left-color: $bg-primary; border-left-color: #0d6efd;
color: $text-color-white; color: #fff;
} }
} }
} }
...@@ -90,4 +88,4 @@ $text-color-white: #fff; ...@@ -90,4 +88,4 @@ $text-color-white: #fff;
input { input {
border-color: #f33a58; border-color: #f33a58;
} }
} }
\ No newline at end of file
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
.col-2 .col-2
= f.label :cv, 'Cv: ', class: 'form-label label' = f.label :cv, 'Cv: ', class: 'form-label label'
.col-10 .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 span.form-control
= url_for(@apply.cv) = url_for(@apply.cv)
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
.col-2 .col-2
= f.label :cv, class: 'form-label label' = f.label :cv, class: 'form-label label'
.col-10 .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' = f.submit 'Confirm', class: 'btn btn-primary w-25 my-4 btn-height'
= render 'validate_form' = 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