Skip to content

Commit

Permalink
Added course taken and edited tab styling
Browse files Browse the repository at this point in the history
  • Loading branch information
ShireenKumar committed Jan 22, 2025
1 parent f58af6a commit 27ab320
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions packages/frontend/components/Sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,12 @@ const Sidebar: React.FC<SidebarProps> = memo(
dndIdPrefix={`${SIDEBAR_DND_ID_PREFIX}-nupath`}
loading={isCoursesLoading}
/>
<Tabs>
<Tabs isFitted variant="enclosed-colored" colorScheme="blue">
<TabList>
<Tab>Major</Tab>
<Tab>Minor(s)</Tab>
<Tab _selected={{ color: "white", bg: "blue.800" }}>Major</Tab>
<Tab _selected={{ color: "white", bg: "blue.800" }}>
Minor(s)
</Tab>
</TabList>
<TabPanels>
<TabPanel>
Expand Down Expand Up @@ -309,6 +311,7 @@ const Sidebar: React.FC<SidebarProps> = memo(
validationStatus={
SidebarValidationStatus.InProgress
}
coursesTaken={coursesTaken}
></SidebarSection>
);
}
Expand Down

0 comments on commit 27ab320

Please sign in to comment.