adjust padding and style of first heading in non type pages
This commit is contained in:
parent
92be5076c3
commit
22b8e154f3
|
@ -6,7 +6,7 @@ title: "Introduction"
|
|||
import { DocsCollapsible } from "@components/Collapsible.tsx";
|
||||
import MD_Title from "@components/MD_Title.tsx"
|
||||
|
||||
# <MD_Title titleVar={1}> {frontmatter.title} </MD_Title>
|
||||
# {frontmatter.title}
|
||||
|
||||
This page will walk you through the process of creating a simple bar/panel, and
|
||||
introduce you to all the basic concepts involved.
|
||||
|
|
|
@ -4,7 +4,7 @@ title: "Positioning"
|
|||
---
|
||||
import MD_Title from "@components/MD_Title.tsx"
|
||||
|
||||
# <MD_Title titleVar={1}> {frontmatter.title} </MD_Title>
|
||||
# {frontmatter.title}
|
||||
|
||||
QtQuick has multiple ways to position components. This page has instructions for where and how
|
||||
to use them.
|
||||
|
|
|
@ -5,7 +5,7 @@ title: "QML Overview"
|
|||
import MD_Title from "@components/MD_Title.tsx"
|
||||
import { DocsCollapsible } from "@components/Collapsible.tsx";
|
||||
|
||||
# <MD_Title titleVar={1}> {frontmatter.title} </MD_Title>
|
||||
# {frontmatter.title}
|
||||
|
||||
Quickshell is configured using the Qt Modeling Language, or QML.
|
||||
This page explains what you need to know about QML to start using quickshell.
|
||||
|
|
|
@ -40,6 +40,10 @@
|
|||
|
||||
& section {
|
||||
margin-block: 1.618rem;
|
||||
|
||||
&:nth-child(2) {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
& p {
|
||||
|
|
Loading…
Reference in a new issue