@@ -130,7 +130,7 @@ export function Page({children, toc, routeTree, meta, section}: PageProps) {
130
130
) } >
131
131
{ showSidebar && (
132
132
< div className = "lg:-mt-16" >
133
- < div className = "lg:pt-16 fixed lg:sticky top-0 start-0 end-0 py-0 shadow lg:shadow-none" >
133
+ < div className = "fixed top-0 py-0 shadow lg:pt-16 lg:sticky start-0 end-0 lg:shadow-none" >
134
134
< SidebarNav
135
135
key = { section }
136
136
routeTree = { routeTree }
@@ -143,7 +143,7 @@ export function Page({children, toc, routeTree, meta, section}: PageProps) {
143
143
< Suspense fallback = { null } >
144
144
< main className = "min-w-0 isolate" >
145
145
< article
146
- className = "break-words font-normal text-primary dark:text-primary-dark"
146
+ className = "font-normal break-words text-primary dark:text-primary-dark"
147
147
key = { asPath } >
148
148
{ content }
149
149
</ article >
@@ -153,14 +153,14 @@ export function Page({children, toc, routeTree, meta, section}: PageProps) {
153
153
isHomePage && 'bg-wash dark:bg-gray-95 mt-[-1px]'
154
154
) } >
155
155
{ ! isHomePage && (
156
- < div className = "mx-auto w-full px-5 sm:px-12 md:px-12 pt-10 md:pt-12 lg:pt-10" >
156
+ < div className = "w-full px-5 pt-10 mx-auto sm:px-12 md:px-12 md:pt-12 lg:pt-10" >
157
157
{
158
- < hr className = "max-w-7xl mx-auto border-border dark:border-border-dark" />
158
+ < hr className = "mx-auto max-w-7xl border-border dark:border-border-dark" />
159
159
}
160
160
{ showSurvey && (
161
161
< >
162
- < div className = "flex flex-col items-center m -4 p -4" >
163
- < p className = "font-bold text-primary dark:text-primary-dark text-lg mb-4 " >
162
+ < div className = "flex flex-col items-center p -4 m -4" >
163
+ < p className = "mb-4 text-lg font-bold text-primary dark:text-primary-dark" >
164
164
How do you like these docs?
165
165
</ p >
166
166
< div >
@@ -178,7 +178,7 @@ export function Page({children, toc, routeTree, meta, section}: PageProps) {
178
178
</ ButtonLink >
179
179
</ div >
180
180
</ div >
181
- < hr className = "max-w-7xl mx-auto border-border dark:border-border-dark" />
181
+ < hr className = "mx-auto max-w-7xl border-border dark:border-border-dark" />
182
182
</ >
183
183
) }
184
184
</ div >
@@ -193,7 +193,7 @@ export function Page({children, toc, routeTree, meta, section}: PageProps) {
193
193
</ div >
194
194
</ main >
195
195
</ Suspense >
196
- < div className = "-mt-16 hidden lg:max-w-xs 2xl:block" >
196
+ < div className = "hidden -mt-16 lg:max-w-custom -xs 2xl:block" >
197
197
{ showToc && toc . length > 0 && < Toc headings = { toc } key = { asPath } /> }
198
198
</ div >
199
199
</ div >
0 commit comments