Skip to content

Commit

Permalink
fix: card components
Browse files Browse the repository at this point in the history
  • Loading branch information
rxyhn committed Sep 22, 2024
1 parent 621184e commit 2aea97f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/Card.astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ const { url, name, description, highlights, technologies } = Astro.props;
href={url}
target="_blank"
rel="noopener noreferrer"
class="group flex items-center gap-3 rounded-lg border p-4 duration-300 hover:bg-black/5 dark:border-white/20 hover:dark:bg-white/10"
class="group flex items-center gap-3 rounded-lg border p-4"
>
<div class="w-full group-hover:text-black dark:group-hover:text-white">
<div
class="w-full duration-300 hover:bg-black/5 hover:transition-colors group-hover:text-black dark:border-white/20 hover:dark:bg-white/10 dark:group-hover:text-white"
>
<div class="flex items-center gap-2">
<div class="text-base font-bold text-black/75 dark:text-white/75">
{name}
Expand Down

0 comments on commit 2aea97f

Please sign in to comment.