From a4a92d785750dfefaf27a29aa945462cd7e24c63 Mon Sep 17 00:00:00 2001 From: Oliver Bryan <04oliverbryan@gmail.com> Date: Fri, 26 Sep 2025 13:40:02 +0100 Subject: [PATCH] improved styling --- src/components/ProjectListItem.astro | 38 ++++++++++++++++++---------- 1 file changed, 24 insertions(+), 14 deletions(-) diff --git a/src/components/ProjectListItem.astro b/src/components/ProjectListItem.astro index 736e53d4..5df403b7 100644 --- a/src/components/ProjectListItem.astro +++ b/src/components/ProjectListItem.astro @@ -12,28 +12,38 @@ const { title, description, date, image, slug } = Astro.props; } .project-title { color: var(--ayu-accent); - transition: color 0.2s; } - .project-item:hover .project-title { - color: var(--ayu-red-500); + .project-description { + color: var(--ayu-fg); + } + .project-date { + color: var(--ayu-gutter); } - -
+ +