Skip to content

Commit

Permalink
fix(appstore): bad contrast on hover
Browse files Browse the repository at this point in the history
  • Loading branch information
GabsEdits committed Dec 28, 2024
1 parent 250834c commit 9869425
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/pages/appstore.astro
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,9 @@ class AppStore {
<span class="px-2 py-1 rounded-lg text-sm ${this.getCategoryColor(installer.Category)}">${installer.Category}</span>
</div>
</div>
<div class="bg-gray-100 rounded-b-lg text-center flex gap-2 justify-between dark:bg-gray-700 dark:text-gray-300 dark:hover:bg-gray-600">
<a class="block font-medium text-lg size-full p-2 hover:bg-gray-500 rounded-bl-lg" href="/app#${item}">Details</a>
<a class="block font-medium text-lg size-full p-2 hover:bg-gray-500 rounded-br-lg" href="https://docs.usebottles.com/bottles/installers#use-installers">Install</a>
</div>
<div class="bg-gray-100 rounded-b-lg text-center flex gap-2 justify-between dark:bg-gray-700 dark:text-gray-300">
<a class="block font-medium text-lg size-full p-2 hover:bg-gray-200 dark:hover:bg-gray-600 rounded-bl-lg" href="/app#${item}">Details</a>
<a class="block font-medium text-lg size-full p-2 hover:bg-gray-200 dark:hover:bg-gray-600 rounded-br-lg" href="https://docs.usebottles.com/bottles/installers#use-installers">Install</a>
</div>
`;
}
Expand Down

0 comments on commit 9869425

Please sign in to comment.