File tree Expand file tree Collapse file tree 1 file changed +4
-12
lines changed
apps/sq-server/src/main/js/apps/create/project/components Expand file tree Collapse file tree 1 file changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ export default function RepositoryList(props: Readonly<RepositoryListProps>) {
8282
8383 return (
8484 < div className = "sw-flex sw-gap-12" >
85- < LargeColumn >
85+ < div className = "sw-flex-[6]" >
8686 < div className = "sw-mb-2 sw-py-2 sw-flex sw-items-center sw-justify-between sw-w-full" >
8787 < div >
8888 < Checkbox
@@ -139,8 +139,8 @@ export default function RepositoryList(props: Readonly<RepositoryListProps>) {
139139 loading = { loadingRepositories }
140140 total = { repositoryPaging . total }
141141 />
142- </ LargeColumn >
143- < SideColumn >
142+ </ div >
143+ < div className = "sw-flex-[4]" >
144144 { selected . size > 0 && (
145145 < SetupBox className = "sw-rounded-2 sw-p-8 sw-mb-0" >
146146 < SetupBoxTitle className = "sw-mb-2 sw-heading-lg" >
@@ -168,19 +168,11 @@ export default function RepositoryList(props: Readonly<RepositoryListProps>) {
168168 </ div >
169169 </ SetupBox >
170170 ) }
171- </ SideColumn >
171+ </ div >
172172 </ div >
173173 ) ;
174174}
175175
176- const LargeColumn = styled . div `
177- flex: 6;
178- ` ;
179-
180- const SideColumn = styled . div `
181- flex: 4;
182- ` ;
183-
184176const SetupBox = styled . form `
185177 max-height: 280px;
186178 background: ${ themeColor ( 'highlightedSection' ) } ;
You can’t perform that action at this time.
0 commit comments