Skip to content

Commit

Permalink
Color coding
Browse files Browse the repository at this point in the history
  • Loading branch information
erica-dong committed Jan 13, 2024
1 parent 412c034 commit 2457d36
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
16 changes: 14 additions & 2 deletions src/components/Dashboard/Dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -318,16 +318,28 @@ function Dashboard() {
style={{
padding: 0,
background: colorBgContainer,
position: "relative",
height: 0,
}}
>
<Button
type="text"
icon={collapsed ? <MenuUnfoldOutlined /> : <MenuFoldOutlined />}
onClick={() => setCollapsed(!collapsed)}
className="sideButt"
style={{
fontSize: '16px',
width: 64,
height: 64,
width: 48,
height: 48,
position: "absolute",
top: 16,
left: 16,
zIndex: 1,
background: "black",
color: "white",
borderStyle: "solid",
borderWidth: 1,
borderColor: "white",
}}
/>
</Header>
Expand Down
12 changes: 12 additions & 0 deletions src/components/Dashboard/Requirements/Requirements.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,18 @@ ul {
padding: 0;
}

/* .course-select .ant-select-selector, .course-select .ant-select-selection-item {
background-color: black !important;
border-color: white !important;
color: white !important;
}
.course-select .ant-select-arrow {
color: white !important;
} */

/* TODO: figure out for expanded */

/* .req-courses li .ant-progress-steps-outer {
display: grid;
grid-template-rows: 1fr;
Expand Down

0 comments on commit 2457d36

Please sign in to comment.