diff --git a/frontend/src/components/CourseCard/CourseCard.tsx b/frontend/src/components/CourseCard/CourseCard.tsx index 1711a594b..b9e871131 100644 --- a/frontend/src/components/CourseCard/CourseCard.tsx +++ b/frontend/src/components/CourseCard/CourseCard.tsx @@ -19,7 +19,7 @@ export default function CourseCard({ terms, }: CourseCardProps) { return ( -
+
{/* Course courseCode + Ratings */}

diff --git a/frontend/src/components/Navbar/Navbar.tsx b/frontend/src/components/Navbar/Navbar.tsx index aa4860d6a..7351fb7e4 100644 --- a/frontend/src/components/Navbar/Navbar.tsx +++ b/frontend/src/components/Navbar/Navbar.tsx @@ -67,7 +67,7 @@ export default function Navbar({ userZid }: NavbarProps) { ref={ref} className={ collapsed - ? "fixed flex flex-col items-center w-20 h-screen gap-4 p-4 duration-150 bg-gray-50 dark:bg-slate-700 z-50 xs:p-2 xs:w-15 xs:gap-2" + ? "fixed flex flex-col items-center w-20 h-screen gap-4 p-4 duration-150 bg-gray-100 dark:bg-slate-700 z-50 xs:p-2 xs:w-15 xs:gap-2" : "fixed flex flex-col w-72 h-screen gap-4 p-4 bg-gray-50 dark:bg-slate-700 z-40 duration-150" } > diff --git a/frontend/src/components/ReviewCard/ReviewCard.tsx b/frontend/src/components/ReviewCard/ReviewCard.tsx index 8cd966f7d..5b40c653d 100644 --- a/frontend/src/components/ReviewCard/ReviewCard.tsx +++ b/frontend/src/components/ReviewCard/ReviewCard.tsx @@ -88,7 +88,7 @@ export default function ReviewCard({ }; return ( -
+
{/* Title + Date */}

{review.title ? review.title : "-"}

diff --git a/frontend/tailwind.config.js b/frontend/tailwind.config.js index ee037cf01..83718bcf9 100644 --- a/frontend/tailwind.config.js +++ b/frontend/tailwind.config.js @@ -25,7 +25,7 @@ module.exports = { "unilectives-subheadings": "#989898", "unilectives-placeholder": "#606060", "unilectives-tags": "#CCEBF6", - "unilectives-card": "#FAFAFA", + "unilectives-card": "#f6f6f6", "unilectives-light-blue": "#84CEE7", "unilectives-purple": "#B789E5", "unilectives-indigo": "#9BADE8",