Skip to content

Commit

Permalink
lorenss
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanggum committed Apr 14, 2024
1 parent 9550cb0 commit df795b1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ function AddCourseMenu(){
<div className={styles.SectionHeader}>
Pinned Courses
</div>
{MockCourses.map(course => (
{/* {MockCourses.map(course => (
<div style={{ marginBottom: "4px" }}>
<CourseBoxSmall course={course} />
</div>
))}
))} */}
</div>
</div>
);
Expand Down
5 changes: 2 additions & 3 deletions frontend/src/pages/Majors/Majors.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,9 @@
flex-direction: row;

justify-content: center;
padding-top: 100px;

top: 75px;
width: 100%;
padding: 20px calc(50% - 500px);
margin-top: 100px;
}

.majorContainer {
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/pages/Majors/Majors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ import styles from "./Majors.module.css";
import ProgramRequirementsBox from "./components/ProgramRequirementsBox";
import ProgramMetadataBox from "./components/ProgramMetadataBox";

import { CGSC, CPSC, ECON, HIST } from "./../../commons/mock/MockProgram";
const programs = [CGSC, CPSC, ECON, HIST];

import nav_styles from "./../../commons/components/navbar/NavBar.module.css";
import img_logo from "./../../commons/images/ma_logo.png";
import { NavLink } from "react-router-dom";

import { CGSC, CPSC, ECON, HIST } from "./../../commons/mock/MockProgram";
const programs = [CGSC, CPSC, ECON, HIST];

function NavBar() {
return (
<div className={nav_styles.NavBar}>
Expand Down

0 comments on commit df795b1

Please sign in to comment.