Skip to content

Commit 72043cd

Browse files
committed
use theme-aware text colours for location and salary in JobCard
1 parent 4d58e39 commit 72043cd

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/JobCard.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ const { title, location, type, level, salary, description, responsibilities, min
2828
<h2 class="text-3xl font-bold mb-2">{title}</h2>
2929
</a>
3030

31-
<p class="text-white/60 mb-2">{([level, type, location].filter(Boolean)).join("")}</p>
32-
<p class="text-white/70 mb-4">{salary}</p>
31+
<p class="text-[var(--color-text-muted)] mb-2">{([level, type, location].filter(Boolean)).join("")}</p>
32+
<p class="text-[var(--color-text-secondary)] mb-4">{salary}</p>
3333
<Markdown content={description || ""} class="job-post" />
3434

3535
{ responsibilities &&

0 commit comments

Comments
 (0)