File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,9 @@ export default function ReposPage() {
77 < div className = "h-screen flex flex-col items-center" >
88 < NavigationMenu />
99 < Suspense fallback = { < div > Loading...</ div > } >
10- < RepositoryTable />
10+ < div className = "max-w-[90%]" >
11+ < RepositoryTable />
12+ </ div >
1113 </ Suspense >
1214 </ div >
1315 )
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ export const CodePreviewPanel = ({
110110
111111 return (
112112 < div className = "flex flex-col h-full" >
113- < div className = "flex flex-row bg-cyan-200 dark:bg-cyan-900 items-center justify-between pr-3 py-0.5" >
113+ < div className = "flex flex-row bg-cyan-200 dark:bg-cyan-900 items-center justify-between pr-3 py-0.5 border " >
114114 < div className = "flex flex-row" >
115115 < div
116116 style = { { width : `${ gutterWidth } px` } }
Original file line number Diff line number Diff line change @@ -116,9 +116,9 @@ const FilePreview = ({
116116 } , [ matchCount ] ) ;
117117
118118 return (
119- < div className = "flex flex-col" >
119+ < div >
120120 < div
121- className = "bg-cyan-200 dark:bg-cyan-900 primary-foreground px-2 py-0.5 flex flex-row items-center justify-between border cursor-pointer"
121+ className = "sticky top-0 bg-cyan-200 dark:bg-cyan-900 primary-foreground px-2 py-0.5 flex flex-row items-center justify-between border cursor-pointer z-10 "
122122 onClick = { ( ) => {
123123 onOpenFile ( ) ;
124124 } }
You can’t perform that action at this time.
0 commit comments