From 2d9293732b7a2090efb98e10808638d97c5f5263 Mon Sep 17 00:00:00 2001 From: Prospector <6166773+Prospector@users.noreply.github.com> Date: Wed, 11 Jan 2023 09:32:32 -0800 Subject: [PATCH] Make landing page project cards use actual links instead of JS (#896) * Make landing page project cards use actual links instead of JS * Make landing page links animate like other clickable elements --- pages/index.vue | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/pages/index.vue b/pages/index.vue index a4c8cda0b..3fb5a24ae 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -51,11 +51,11 @@ :aria-hidden="n === 1" :class="{ offset: index % 2 }" > -
- -

- {{ project.title }} -

-
+ + {{ project.title }} + {{ project.description }}
-
+ @@ -780,7 +775,7 @@ export default { padding: 1rem; gap: 1rem; border-radius: 1rem; - transition: background 0.5s ease-in-out; + transition: background 0.5s ease-in-out, transform 0.05s ease-in-out; // Removed due to lag on mobile :( // backdrop-filter: blur(0.25rem); @@ -797,7 +792,7 @@ export default { box-sizing: border-box; } - .title p { + .title { color: var(--landing-color-heading); max-width: 13.75rem; overflow: hidden;