We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b6a23e9 + f69b85a commit 84e72e0Copy full SHA for 84e72e0
2 files changed
src/components/BlogPostCard.astro
@@ -9,7 +9,7 @@ const { post } = Astro.props;
9
---
10
11
<div
12
- 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"
13
>
14
<a class="hover:underline" href={`/blog/${post.id}`}>
15
{post.data.title}
src/components/ProjectCard.astro
@@ -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"
+>
16
<a
17
class="inline-flex items-center hover:underline"
18
href={link}
0 commit comments