Skip to content

Commit

Permalink
Merge pull request #91 from dharamveergit/eliza
Browse files Browse the repository at this point in the history
fix: adjust spacing in category links and update heading capitalizati…
  • Loading branch information
HoomanDgtl authored Dec 19, 2024
2 parents 1375cc4 + fd9a18d commit 08fb814
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/ecosystem-pages/categories.astro
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const displayTag = (tag: string) => {
<div class="mt-4 flex flex-col gap-y-4">
<a
href={`/ecosystem/${pathName?.[2]}/`}
class={`inline-flex cursor-pointer text-base hover:text-primary ${
class={`inline-flex cursor-pointer text-base hover:text-primary ${
astroUrl.pathname === `/ecosystem/${pathName?.[2]}/`
? "text-primary"
: "text-para"
Expand All @@ -71,7 +71,7 @@ const displayTag = (tag: string) => {
sortedTags.map((tag: string) => (
<a
href={`/ecosystem/${pathName?.[2]}/${tag.toLowerCase()}`}
class={`inline-flex cursor-pointer text-base hover:text-primary ${
class={`inline-flex cursor-pointer text-base hover:text-primary ${
astroUrl?.pathname
?.split("/")?.[3]
?.split("%20")
Expand Down
2 changes: 1 addition & 1 deletion src/components/ecosystem-pages/ecosystem-page.astro
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const astroUrl = Astro.url;
<div>
<div class="flex items-center justify-between">
<h2
class="text-[20px] font-semibold leading-[28px] md:text-2lg md:leading-[48px]"
class="text-[20px] font-semibold capitalize leading-[28px] md:text-2lg md:leading-[48px]"
>
{title || "Deployed On Akash"}
</h2>
Expand Down

0 comments on commit 08fb814

Please sign in to comment.