diff --git a/src/layouts/GuideLayout.astro b/src/layouts/GuideLayout.astro
index 86f7c9f..5bd56ce 100644
--- a/src/layouts/GuideLayout.astro
+++ b/src/layouts/GuideLayout.astro
@@ -5,8 +5,8 @@ import TOCIntersectionObserver from "@src/components/hooks/TOCIntersectionObserv
import type { ConfigHeading } from "@src/components/navigation/sidebars/types";
export interface Props {
- headings: ConfigHeading[];
title: string;
+ headings: ConfigHeading[];
description: string;
}
@@ -15,10 +15,11 @@ const { title, description, headings } = Astro.props;
diff --git a/src/pages/docs/about.mdx b/src/pages/docs/about.mdx
index ba3e003..6e3059d 100644
--- a/src/pages/docs/about.mdx
+++ b/src/pages/docs/about.mdx
@@ -2,7 +2,6 @@
layout: "@layouts/GuideMdLayout.astro"
title: "About Quickshell"
---
-# {frontmatter.title}
Quickshell is a toolkit for building a desktop shell, which is to say components
of your desktop like bars, widgets, lock screens, display managers, and the like.
@@ -27,4 +26,4 @@ Quickshell is actively developed and will still receive breaking changes.
A tagged release is planned soon, however there will be breakage before
that point.
-See the [Usage Guide](/docs/guide) to learn how to set up and use Quickshell
\ No newline at end of file
+See the [Usage Guide](/docs/guide) to learn how to set up and use Quickshell
diff --git a/src/styles/docs/toc/intro-toc.css b/src/styles/docs/toc/intro-toc.css
index a077071..8c3b437 100644
--- a/src/styles/docs/toc/intro-toc.css
+++ b/src/styles/docs/toc/intro-toc.css
@@ -22,7 +22,7 @@
margin: 0;
margin-block: 0.618rem;
- & * {
+ & .toc_heading * {
margin-left: 0.348rem;
}
}
diff --git a/src/styles/docs/toc/toc.css b/src/styles/docs/toc/toc.css
index 7ed85db..902696d 100644
--- a/src/styles/docs/toc/toc.css
+++ b/src/styles/docs/toc/toc.css
@@ -17,6 +17,11 @@
background-color: transparent;
}
+.toc-content > p {
+ margin-top: 0.3rem;
+ margin-bottom: 0.4rem;
+}
+
.toc-toggle {
--width: 80svw;
display: block;
@@ -132,7 +137,7 @@
margin: 0;
margin-block: 0.618rem;
- & * {
+ & .toc_heading * {
margin-left: 0.348rem;
}
}