diff --git a/src/library-authoring/import-course/CourseImportHomePage.tsx b/src/library-authoring/import-course/CourseImportHomePage.tsx index cfbf101b8..c27dda938 100644 --- a/src/library-authoring/import-course/CourseImportHomePage.tsx +++ b/src/library-authoring/import-course/CourseImportHomePage.tsx @@ -55,53 +55,51 @@ export const CourseImportHomePage = () => { } return ( -
-
- - {libraryData.title} | {process.env.SITE_NAME} - -
- -
- } - /> -
- - - {courseImports.length ? ( - -

- -

- {courseImports.map((courseImport) => ( - - ))} -
- ) : ()} -
- - - -
-
-
+
+ + {libraryData.title} | {process.env.SITE_NAME} + +
+ +
+ } + /> +
+ + + {courseImports.length ? ( + +

+ +

+ {courseImports.map((courseImport) => ( + + ))} +
+ ) : ()} +
+ + + +
+
); }; diff --git a/src/library-authoring/import-course/index.scss b/src/library-authoring/import-course/index.scss index cdb000fba..8c3364c4a 100644 --- a/src/library-authoring/import-course/index.scss +++ b/src/library-authoring/import-course/index.scss @@ -36,3 +36,10 @@ padding-left: 0; } } + +.course-import { + .row { + // Make the row grow to fill the remaining vertial space + flex-grow: 1; + } +}