install/setup sass

This commit is contained in:
2025-11-22 21:01:20 -05:00
parent fb99d9cfef
commit 67d8178270
31 changed files with 442 additions and 282 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
---
import { getCollection, render } from "astro:content";
import BlogHeader from "@components/BlogHeader.astro";
import Tags from "@components/Tags.astro";
import BlogHeader from "@components/Blog/BlogHeader.astro";
import Tags from "@components/Blog/Tags.astro";
import Layout from "@layouts/Layout.astro";
export async function getStaticPaths() {
@@ -30,7 +30,7 @@ const { Content } = await render(post);
</article>
</Layout>
<style>
<style lang="scss">
.not-by-ai {
display: block;
width: 134px;
+2 -2
View File
@@ -1,6 +1,6 @@
---
import { type CollectionEntry, getCollection } from "astro:content";
import PostPreview from "@components/PostPreview.astro";
import PostPreview from "@components/Blog/PostPreview.astro";
import Layout from "@layouts/Layout.astro";
import type { Page } from "astro";
@@ -44,7 +44,7 @@ const { page } = Astro.props;
</div>
</Layout>
<style>
<style lang="scss">
ul {
list-style: none;
}
+1 -1
View File
@@ -65,7 +65,7 @@ posts.sort(
</ul>
</Layout>
<style>
<style lang="scss">
ul {
list-style: none;
}