File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ export function Breadcrumbs({leafNode}: BreadcrumbsProps) {
2424 }
2525
2626 return (
27- < ul className = "list-none flex p-0 flex-wrap float-left " style = { { margin : 0 } } >
27+ < ul className = "not-prose list-none flex flex-wrap" style = { { margin : 0 } } >
2828 { breadcrumbs . map ( b => {
2929 return (
3030 < li className = { styles [ 'breadcrumb-item' ] } key = { b . to } >
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ export function CopyMarkdownButton({pathname}: CopyMarkdownButtonProps) {
119119 } ;
120120
121121 const buttonClass =
122- 'inline-flex items-center h-full text-gray-700 dark:text-[var(--foreground)] bg-transparent border-none cursor-pointer transition-colors duration-150 hover:bg-gray-50 dark:hover:bg-[var(--gray-a4)] active:bg-gray-100 dark:active:bg-[var(--gray-5)] focus:bg-gray-50 dark:focus:bg-[var(--gray-a4)] outline-none' ;
122+ 'inline-flex items-center text-nowrap h-full text-gray-700 dark:text-[var(--foreground)] bg-transparent border-none cursor-pointer transition-colors duration-150 hover:bg-gray-50 dark:hover:bg-[var(--gray-a4)] active:bg-gray-100 dark:active:bg-[var(--gray-5)] focus:bg-gray-50 dark:focus:bg-[var(--gray-a4)] outline-none' ;
123123 const dropdownItemClass =
124124 'flex items-center gap-3 w-full p-2 px-3 text-left bg-transparent rounded-md transition-colors hover:bg-gray-100 dark:hover:bg-[var(--gray-a4)] font-sans text-gray-900 dark:text-[var(--foreground)]' ;
125125 const iconContainerClass =
Original file line number Diff line number Diff line change @@ -82,9 +82,9 @@ export function DocPage({
8282 < div className = "mb-4" >
8383 < Banner />
8484 </ div >
85- < div className = "overflow-hidden " >
85+ < div className = "flex items-center " >
8686 { leafNode && < Breadcrumbs leafNode = { leafNode } /> } { ' ' }
87- < div className = "float-right mt-4 sm:mt-0 hidden sm:block" >
87+ < div className = "ml-auto hidden sm:block" >
8888 < CopyMarkdownButton pathname = { pathname } />
8989 </ div >
9090 </ div >
You can’t perform that action at this time.
0 commit comments