diff --git a/app/src/components/CourseDisplay.tsx b/app/src/components/CourseDisplay.tsx index b17976b..9dca973 100644 --- a/app/src/components/CourseDisplay.tsx +++ b/app/src/components/CourseDisplay.tsx @@ -18,21 +18,21 @@ export default function CourseDisplay(props: Props) { {/* COURSE INFORMATION */}
-
+
{/* Course Code & Name */} -

+

{props.course.code} {props.course.name}

{/* Description */}
-

+

{props.course.description}

{/* Additional Information */} -
+
({props.course.credits.display} Credits)
diff --git a/app/src/components/MultipleSelectionDisplay.tsx b/app/src/components/MultipleSelectionDisplay.tsx index f0037f9..4ae64a0 100644 --- a/app/src/components/MultipleSelectionDisplay.tsx +++ b/app/src/components/MultipleSelectionDisplay.tsx @@ -29,7 +29,7 @@ export default function MultipleSelectionDisplay(props: Props) {
{selectionDisplays}
{/* TODO: reconsider all these classes */}
-
+

{section.deptControlled && ( - + )} {section.displayName} diff --git a/app/src/components/SectionPicker.tsx b/app/src/components/SectionPicker.tsx index 7f2ffcc..46e52af 100644 --- a/app/src/components/SectionPicker.tsx +++ b/app/src/components/SectionPicker.tsx @@ -49,7 +49,7 @@ export default function SectionPicker(props: Props) {