File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
components/dashboard/src/repositories/list Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -49,19 +49,22 @@ export const RepositoryTable: FC<Props> = ({
49
49
return (
50
50
< >
51
51
{ /* Search/Filter bar */ }
52
- < div className = "flex flex-row flex-wrap justify-between items-center" >
53
- < div className = "flex flex-row flex-wrap items-center" >
52
+ < div className = "flex flex-col-reverse md:flex- row flex-wrap justify-between items-center gap-2 " >
53
+ < div className = "flex flex-row flex-wrap items-center w-full md:w-auto " >
54
54
{ /* TODO: Add search icon on left and decide on pulling Inputs into podkit */ }
55
55
< TextInput
56
- className = "w-80"
56
+ className = "w-full max-w-none md:w- 80"
57
57
value = { searchTerm }
58
58
onChange = { onSearchTermChange }
59
59
placeholder = "Search imported repositories"
60
60
/>
61
61
{ /* TODO: Add prebuild status filter dropdown */ }
62
62
</ div >
63
63
64
- < Button onClick = { onImport } > Import Repository</ Button >
64
+ { /* TODO: Consider making all podkit buttons behave this way, full width on small screen */ }
65
+ < Button className = "w-full md:w-auto" onClick = { onImport } >
66
+ Import Repository
67
+ </ Button >
65
68
</ div >
66
69
< div className = "relative w-full overflow-auto mt-4" >
67
70
{ configurations . length > 0 ? (
You can’t perform that action at this time.
0 commit comments