Skip to content

Commit 91ff294

Browse files
committed
CSS Changes
1 parent fd821b5 commit 91ff294

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

src/pages/education.astro

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import EducationCard from "../components/EducationCard.astro";
55
import EducationInFeedAd from "../components/ads/EducationInFeedAd.astro";
66
import BookCard from "../components/BookCard.astro";
77
import HorizontalAd from "../components/ads/HorizontalAd.astro";
8+
import MultiplexAd from "../components/ads/MultiplexAd.astro";
89
910
const educationItems = await getCollection("education");
1011
@@ -20,9 +21,9 @@ const bookItems = educationItems.filter(
2021
);
2122
---
2223

23-
<Layout title="Education | SimpleAryan">
24+
<Layout title="Education | SimpleAryan" fullWidth={true}>
2425
<main>
25-
<div class="container">
26+
<div class="container education-container">
2627
<header class="page-header">
2728
<h1 class="animate-fade-in">Education</h1>
2829
<p class="subtitle animate-fade-in">
@@ -110,7 +111,8 @@ const bookItems = educationItems.filter(
110111
</section>
111112
)
112113
}
113-
<HorizontalAd />
114+
<!-- <HorizontalAd /> -->
115+
<MultiplexAd />
114116
</div>
115117
</main>
116118
</Layout>

src/pages/index.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ const posts = (await getCollection("blog"))
620620

621621
.books-grid {
622622
display: grid;
623-
grid-template-columns: repeat(2, 180px);
623+
grid-template-columns: repeat(4, 150px);
624624
justify-content: center;
625625
gap: 2rem;
626626
}

0 commit comments

Comments
 (0)