Skip to content

Commit

Permalink
fix: card height
Browse files Browse the repository at this point in the history
  • Loading branch information
krantheman committed Oct 9, 2023
1 parent b361995 commit dc520e5
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions hrms/www/jobs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ <h3 class="mt-0 mb-10 jobs-page">{{ _("Job Openings") }}</h3>
class="form-control border font-md"
placeholder="Search for Jobs"
aria-label="Jobs Search"
style="height: 40px"
/>
<div class="search-icon">
<svg
Expand All @@ -75,7 +74,7 @@ <h3 class="mt-0 mb-10 jobs-page">{{ _("Job Openings") }}</h3>
<button
id="sort"
class="btn btn-default btn-order"
style="height: 40px; width: 40px; background-color: white"
style="background-color: white"
>
<span class="sort-order">
<svg class="icon icon-sm">
Expand Down Expand Up @@ -103,11 +102,14 @@ <h3 class="mt-0 mb-10 jobs-page">{{ _("Job Openings") }}</h3>
<div class="row">
{% for jo in job_openings %}
<div name="card" id="{{ jo.route }}" class="mb-8 col-6" role="button">
<div class="card border">
<div class="card border h-100 flex flex-col">
<div class="p-6">
<div class="flex mb-5">
<div class="col-9 px-0">
<h4 class="mt-0 mb-1 jobs-page text-truncate">
<h4
class="mt-0 mb-1 jobs-page text-truncate"
title="{{ jo.job_title }}"
>
{{ jo.job_title }}
</h4>
<div class="text-14">
Expand Down Expand Up @@ -184,7 +186,7 @@ <h4 class="mt-0 mb-1 jobs-page text-truncate">
{% endif %}
</div>
</div>
<div class="px-4 py-2 job-card-footer">
<div class="px-4 py-2 job-card-footer mt-auto">
<div class="row text-12 text-secondary">
<p class="col-6 text-center border-right mb-0">
{{ _("Applications received: ") }}
Expand Down

0 comments on commit dc520e5

Please sign in to comment.