Skip to content

Commit

Permalink
css-changes
Browse files Browse the repository at this point in the history
  • Loading branch information
karthik8239 committed Sep 24, 2024
1 parent b715477 commit c01a392
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions app/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,10 @@ useSeoMeta({
<template>
<main class="grow w-full lg:w-2/3 mx-auto mt-20 p-2">
<SiteHeader />
<h3 class="text-lg leading-snug text-zinc-600 font-bold mt-8 mb-2">Open Positions</h3>
<span class="text-sm text-zinc-500">({{ totalPositions }})</span>
<h3 class="text-lg leading-snug text-zinc-600 font-bold mt-8 mb-2">
Open Positions
<span class="text-sm text-zinc-500 before:content-['('] after:content-[')']">>{{ totalPositions }}</span>
</h3>
<div class="space-y-2" v-if="postings">
<PostingCard v-for="posting in postings" :key="posting.id" :posting="posting" />
</div>
Expand Down

0 comments on commit c01a392

Please sign in to comment.