@@ -269,7 +269,7 @@ def feedback_button_toc() -> rx.Component:
269269 size = "sm" ,
270270 type = "button" ,
271271 on_click = FeedbackState .set_score (1 ),
272- class_name = "justify-start text-m-slate-7 dark:text-m-slate-6" ,
272+ class_name = "justify-start pl-0 text-m-slate-7 dark:text-m-slate-6" ,
273273 ),
274274 content = feedback_content (),
275275 )
@@ -290,7 +290,7 @@ def copy_to_markdown(text: str) -> rx.Component:
290290 type = "button" ,
291291 size = "sm" ,
292292 variant = "ghost" ,
293- class_name = "justify-start text-m-slate-7 dark:text-m-slate-6" ,
293+ class_name = "justify-start pl-0 text-m-slate-7 dark:text-m-slate-6" ,
294294 on_click = [
295295 rx .call_function (copied .set_value (True )),
296296 rx .set_clipboard (text ),
@@ -308,7 +308,7 @@ def ask_ai_chat() -> rx.Component:
308308 "Ask AI about this page" ,
309309 size = "sm" ,
310310 variant = "ghost" ,
311- class_name = "justify-start text-m-slate-7 dark:text-m-slate-6" ,
311+ class_name = "justify-start pl-0 text-m-slate-7 dark:text-m-slate-6" ,
312312 native_button = False ,
313313 ),
314314 to = ai_builder_pages .integrations .mcp_overview .path ,
@@ -359,7 +359,6 @@ def docpage_footer(path: str):
359359 ),
360360 class_name = "flex flex-row justify-center lg:justify-between items-center border-slate-4 border-y-0 lg:border-y pt-0 lg:pt-8 pb-6 lg:pb-8 w-full" ,
361361 ),
362- rx .box (newsletter_form (), class_name = "pt-8 pb-10" ),
363362 rx .box (
364363 rx .box (
365364 footer_link_flex (
@@ -395,21 +394,17 @@ def docpage_footer(path: str):
395394 class_name = "flex flex-wrap justify-between gap-12 w-full" ,
396395 ),
397396 rx .box (
398- rx .box (
399- ph_1 (),
400- rx .text (
401- f"Copyright © { datetime .now ().year } Pynecone, Inc." ,
402- class_name = "font-small text-slate-9" ,
403- ),
404- dark_mode_toggle (),
405- class_name = "flex flex-col gap-6" ,
406- ),
397+ rx .box (dark_mode_toggle (), class_name = "[&>div]:!ml-0" ),
407398 menu_socials (),
408399 class_name = "flex flex-row gap-6 justify-between items-end w-full" ,
409400 ),
401+ rx .text (
402+ f"Copyright © { datetime .now ().year } Pynecone, Inc." ,
403+ class_name = "font-small text-slate-9" ,
404+ ),
410405 class_name = "flex flex-col justify-between gap-10 py-6 lg:py-8 w-full" ,
411406 ),
412- class_name = "flex flex-col max-w-full lg:max-w-auto" ,
407+ class_name = "flex flex-col w-full max-w-full lg:max-w-auto" ,
413408 )
414409
415410
@@ -723,8 +718,9 @@ def wrapper(*args, **kwargs) -> rx.Component:
723718 rx .el .nav (
724719 rx .box (
725720 rx .el .p (
721+ rx .icon ("align-left" , size = 14 , class_name = "dark:text-m-slate-3 text-m-slate-12" ),
726722 "On This Page" ,
727- class_name = "text-sm h-8 flex items-center justify-start font-[525] dark:text-m-slate-3 text-m-slate-12" ,
723+ class_name = "text-sm h-8 flex items-center gap-1.5 justify-start font-[525] dark:text-m-slate-3 text-m-slate-12" ,
728724 ),
729725 rx .el .ul (
730726 * [
0 commit comments