Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/BlogPostCard.astro
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const { post } = Astro.props;
---

<div
class="my-2 flex items-center justify-between text-gray-600 dark:text-gray-400"
class="my-2 flex flex-col items-start justify-between text-gray-600 md:flex-row md:items-center dark:text-gray-400"
>
<a class="hover:underline" href={`/blog/${post.id}`}>
{post.data.title}
Expand Down
4 changes: 3 additions & 1 deletion src/components/ProjectCard.astro
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ const { project } = Astro.props;
const { name, tags, link } = project;
---

<div class="my-2 flex justify-between text-gray-600 dark:text-gray-400">
<div
class="my-2 flex flex-col justify-between text-gray-600 md:flex-row dark:text-gray-400"
>
<a
class="inline-flex items-center hover:underline"
href={link}
Expand Down