Skip to content

Commit

Permalink
fix design
Browse files Browse the repository at this point in the history
  • Loading branch information
flo-bit committed Dec 2, 2024
1 parent 3d1db7f commit 225b9cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/BigBlogEntry.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const { title, description, pubDate, slug, heroImage, tags } = Astro.props;
---

<article
class="relative isolate flex flex-col gap-8 lg:flex-row group md:grid md:grid-cols-2 mt-8"
class="relative isolate flex flex-col gap-8 lg:flex-row group lg:grid lg:grid-cols-2 mt-8"
>
<div class="relative aspect-[16/9] lg:w-full lg:shrink-0">
<HeroImage image={heroImage} />
Expand Down
4 changes: 2 additions & 2 deletions src/components/BlogEntry.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import HeroImage from "./HeroImage.astro";
const { title, description, pubDate, slug, heroImage, tags } = Astro.props;
---

<article class="relative isolate flex flex-col gap-8 lg:flex-row group">
<div class="relative aspect-[16/9] lg:w-64 lg:shrink-0">
<article class="relative isolate flex flex-col gap-8 md:flex-row group">
<div class="relative aspect-[16/9] md:w-64 md:shrink-0">
<HeroImage image={heroImage} />
</div>
<div>
Expand Down

0 comments on commit 225b9cf

Please sign in to comment.