File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export function DocsHeader(props: DocsHeaderProps) {
1212
1313 return (
1414 < >
15- < div className = "border-b flex items-center justify-between" >
15+ < div className = "border-b border-gray-200 flex items-center justify-between" >
1616 < div className = "text-right flex justify-end py-3 px-6" >
1717 < a href = "/" className = "flex items-center justify-end text-xl font-bold" >
1818 < img src = "/driver-head.svg" alt = "Astro" className = "w-10 h-10 mr-2" />
@@ -25,7 +25,7 @@ export function DocsHeader(props: DocsHeaderProps) {
2525 </ button >
2626 </ div >
2727 </ div >
28- < div className = { `bg-gray-50 flex flex-col gap-5 px-6 py-6 border-b ${ isActive ? "block" : "hidden" } ` } >
28+ < div className = { `bg-gray-50 flex flex-col gap-5 px-6 py-6 border-b border-gray-200 ${ isActive ? "block" : "hidden" } ` } >
2929 { Object . entries ( groupedGuides ) . map ( ( [ category , guides ] ) => (
3030 < div key = { category } className = "flex flex-col gap-2" >
3131 < div className = "font-bold text-gray-900 text-sm uppercase" > { category } </ div >
You can’t perform that action at this time.
0 commit comments