From 0077087a5179c2ffdec07ee38f3ffbbb01853dde Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sat, 3 Feb 2024 14:08:16 -0500 Subject: Guestbook; No more hardcoded date --- src/pages/projects.astro | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'src/pages/projects.astro') diff --git a/src/pages/projects.astro b/src/pages/projects.astro index a4f121a..d609211 100644 --- a/src/pages/projects.astro +++ b/src/pages/projects.astro @@ -10,11 +10,13 @@ import projects from "../data/projects.json";

{project.name}

{project.description}

- {project.links.map((link) => { - return ( - {link.name} - ) - })} +
+ {project.links.map((link) => { + return ( + {link.name} + ) + })} +
) }) @@ -48,9 +50,11 @@ import projects from "../data/projects.json"; margin: 0; } - .cards a { - text-align: right; - display: inline-block; + .row { + margin-top: 0.3em; + display: flex; + flex-direction: row; + gap: 1em; } /* Mobile view */ -- cgit v1.2.3