Skip to content

Commit

Permalink
fix: icon stroke color
Browse files Browse the repository at this point in the history
(cherry picked from commit fc615fd)
  • Loading branch information
krantheman authored and mergify[bot] committed Dec 12, 2023
1 parent 5218eb6 commit ae61dbd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hrms/www/jobs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ <h4 class="mt-0 mb-1 mr-20">{{ jo.job_title }}</h4>
{%- if jo.location -%}
<div class="mt-3">
<svg class="icon" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
<g stroke="var(--gray-600)" stroke-miterlimit="10">
<g stroke="var(--gray-700)" stroke-miterlimit="10">
<path d="M11.467 3.458c1.958 1.957 1.958 5.088.027 7.02L7.97 14l-3.523-3.523a4.945 4.945 0 010-6.993l.026-.026a4.922 4.922 0 016.993 0zm0 0c-.026-.026-.026-.026 0 0z">
</path>
<path d="M7.971 8.259a1.305 1.305 0 100-2.61 1.305 1.305 0 000 2.61z"></path>
Expand All @@ -132,15 +132,15 @@ <h4 class="mt-0 mb-1 mr-20">{{ jo.job_title }}</h4>
{% endif %}
{%- if jo.department -%}
<div class="mt-3">
<svg class="icon" style="--icon-stroke: var(--gray-600)">
<svg class="icon" style="--icon-stroke: var(--gray-700)">
<use href="#icon-branch"></use>
</svg>
{{ jo.department }}
</div>
{% endif %}
{%- if jo.publish_salary_range -%}
<div class="mt-3">
<svg class="icon" style="--icon-stroke: var(--gray-600)">
<svg class="icon" style="--icon-stroke: var(--gray-700)">
<use href="#icon-income"></use>
</svg>
{{ frappe.format_value(frappe.utils.flt(jo.lower_range) ,
Expand Down

0 comments on commit ae61dbd

Please sign in to comment.