Skip to content

Commit b1f22db

Browse files
authored
Some minor fixes on UI (#215)
Signed-off-by: Cintia Sánchez García <[email protected]>
1 parent 51051f5 commit b1f22db

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

gitjobs-server/templates/dashboard/job_seeker/applications/list.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<div>You have not applied yet to any jobs within GitJobs.</div>
2323
</div>
2424
<p class="text-stone-700 mb-10">
25-
Please note that jobs that use an external apply url wont be displayed here.
25+
Please note that jobs that use an external apply url won't be displayed here.
2626
</p>
2727
</td>
2828
</tr>

gitjobs-server/templates/dashboard/job_seeker/profile/preview.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
<div class="capitalize text-2xl font-semibold">{{ profile.name }}</div>
1818
{# End name #}
1919

20-
<div class="flex flex-wrap space-x-5 space-y-2">
20+
<div class="flex flex-wrap gap-3 xl:gap-5">
2121
{# Email #}
2222
<a href="mailto:{{ profile.email }}"
2323
target="_blank"
2424
rel="noopener noreferrer"
25-
class="border border-stone-200 rounded-full px-4 flex items-center text-stone-600 text-xs/6 lg:text-sm/6 space-x-2 cursor-pointer">
25+
class="border border-stone-200 rounded-full px-4 flex items-center text-stone-600 text-xs/6 xl:text-sm/6 space-x-2 cursor-pointer">
2626
<div class="svg-icon size-4 icon-email bg-stone-500"></div>
2727
<div>{{ profile.email }}</div>
2828
</a>
@@ -206,7 +206,7 @@
206206
</div>
207207

208208
{% macro main_badge(content, icon) %}
209-
<div class="border border-stone-200 rounded-full px-4 flex items-center text-stone-600 text-xs/6 lg:text-sm/6 space-x-2">
209+
<div class="border border-stone-200 rounded-full px-4 flex items-center text-stone-600 text-xs/6 xl:text-sm/6 space-x-2">
210210
<div class="svg-icon size-4 icon-{{ icon }} bg-stone-500"></div>
211211
<div>{{ content }}</div>
212212
</div>

gitjobs-server/templates/header.html

+4-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@
3333

3434
<div class="relative flex">
3535
{% if page_id == PageId::JobBoard || page_id == PageId::About %}
36-
<div hx-get="/section/user-menu" hx-trigger="load" hx-target="this">
36+
<div hx-get="/section/user-menu"
37+
hx-trigger="load"
38+
hx-target="this"
39+
hx-boost="true">
3740
<button class="relative group rounded-full cursor-pointer bg-white border text-xl border-primary-500 text-primary-600 size-[38px] p-0.5 overflow-hidden"
3841
disabled>
3942
{% call macros::btn_spinner(id = "user-spinner", size = "[2.35rem]", spinner_type = "5", htmx = false) %}

gitjobs-server/templates/jobboard/jobs/explore_section.html

+2-3
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,8 @@
8282
<div class="font-semibold text-sm text-black">Filters</div>
8383

8484
<div class="flex space-x-3 relative">
85-
<div id="desktop-jobs-spinner" class="hx-spinner absolute -start-6 top-0">
86-
{% call macros::spinner(size = "size-5") %}
87-
</div>
85+
<div id="desktop-jobs-spinner"
86+
class="hx-spinner absolute -start-8 top-0.5">{% call macros::spinner(size = "size-5") %}</div>
8887

8988
<button id="reset-desktop-filters" class="btn-primary-outline btn-mini">Reset</button>
9089
</div>

0 commit comments

Comments
 (0)