Skip to content

Commit

Permalink
docs: Use primary color for 'in progress' (#639)
Browse files Browse the repository at this point in the history
  • Loading branch information
manzt authored Jul 30, 2024
1 parent 4d7655c commit bb18084
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/components/IntegrationsGallery.astro
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ let integrations = [
<div class="relative w-fit h-fit">
<a
class="w-28 h-28 p-5 group flex bg-teal-50 border border-teal-200 rounded-lg hover:bg-teal-100 transition duration-100 ease-in-out"
class:list={[status === "implemented" ? "opacity-100" : "opacity-50"]}
class:list={[status === "implemented" ? "opacity-100" : "opacity-70"]}
href={url}
aria-label={`Visit ${name} integration`}
>
<img class="image-preview w-full" src={logo} alt={name} />
{status === "planned" && (
<span class="w-full text-black absolute text-center left-0 -bottom-7 rounded-lg">
<span class="w-full absolute text-center left-0 -bottom-7 rounded-lg">
in progress
</span>
)}
Expand Down

0 comments on commit bb18084

Please sign in to comment.