Skip to content
Snippets Groups Projects
Commit c25bd500 authored by danieldeng2's avatar danieldeng2
Browse files

rename courses to modules

parent ba455cc4
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,7 @@ class App extends React.Component<{}, MyState> { ...@@ -30,7 +30,7 @@ class App extends React.Component<{}, MyState> {
render() { render() {
const horizontalBarPages = [ const horizontalBarPages = [
{ name: "Courses", path: "/courses", icon: faChalkboardTeacher }, { name: "Modules", path: "/modules", icon: faChalkboardTeacher },
{ name: "Timetable", path: "/timetable", icon: faCalendarWeek }, { name: "Timetable", path: "/timetable", icon: faCalendarWeek },
{ name: "Exams", path: "/exams", icon: faBookOpen }, { name: "Exams", path: "/exams", icon: faBookOpen },
{ name: "Other", path: "/other", icon: faEllipsisH }, { name: "Other", path: "/other", icon: faEllipsisH },
......
...@@ -12,9 +12,9 @@ const LeftBarTabGroup: React.FC = () => { ...@@ -12,9 +12,9 @@ const LeftBarTabGroup: React.FC = () => {
> >
<Button className="exam-outline-button">Progress</Button> <Button className="exam-outline-button">Progress</Button>
<Button className="exam-outline-button-a active" type="button"> <Button className="exam-outline-button-a active" type="button">
Course Title Module Title
</Button> </Button>
<Button className="exam-outline-button">Course Code</Button> <Button className="exam-outline-button">Module Code</Button>
<Button className="exam-outline-button">Term</Button> <Button className="exam-outline-button">Term</Button>
</div> </div>
</> </>
......
@import "scss/custom";
#wrapper {
padding-left: 0;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
#sidebar-wrapper {
position: fixed;
left: 250px;
width: 0;
margin-left: -250px;
height: 100%;
margin-bottom: 61px;
overflow-y: auto;
background: #fff;
background: #ffffff;
box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1);
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.module-outline-button {
margin-bottom: 10px;
}
.module-outline-button-a {
margin-bottom: 10px;
border-radius: 8px;
font-weight: 500;
}
#sidebar-wrapper .btn-group-vertical > .btn-group:not(:last-child) > .btn,
#sidebar-wrapper
.btn-group-vertical
> .btn:not(:last-child):not(.dropdown-toggle) {
border-radius: 5px;
}
#sidebar-wrapper
.btn-group-vertical
> .btn-group:not(:first-child)
> #sidebar-wrapper
.btn,
.btn-group-vertical > .btn:not(:first-child) {
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
#wrapper.toggled {
padding-left: 250px;
}
#wrapper.toggled #sidebar-wrapper {
width: 250px;
}
@media (max-width: 992px) {
.sidebar-status {
margin-top: 30px;
margin-left: 16px;
margin-right: 16px;
margin-bottom: 0px;
font-size: 16px;
font-weight: 500;
font-family: "IBM Plex Sans";
color: #000000;
letter-spacing: 0;
position: absolute;
width: max-content;
text-transform: uppercase;
}
.module-outline-heading {
font-size: 24px;
color: #000000;
text-align: left;
margin-top: 64px;
margin-left: 16px;
margin-right: 16px;
position: absolute;
width: max-content;
margin-bottom: 0px;
}
#module-outline-button-group {
margin-top: 102px;
margin-left: 16px;
margin-right: 16px;
width: 218px;
}
}
@media (min-width: 992px) {
#wrapper {
padding-left: 250px;
}
#sidebar-wrapper {
width: 250px;
}
.sidebar-status {
margin-top: 30px;
margin-left: 32px;
margin-right: 32px;
margin-bottom: 0px;
font-size: 16px;
color: #000000;
letter-spacing: 0;
position: absolute;
width: max-content;
}
.module-outline-heading {
font-size: 24px;
color: #000000;
text-align: left;
margin-top: 64px;
margin-left: 32px;
margin-right: 32px;
position: absolute;
width: max-content;
margin-bottom: 0px;
}
#module-outline-button-group {
margin-top: 102px;
margin-left: 32px;
margin-right: 32px;
width: 186px;
}
#wrapper.toggled {
padding-left: 0;
}
#wrapper.toggled #sidebar-wrapper {
width: 0;
}
}
\ No newline at end of file
...@@ -25,7 +25,7 @@ const StandardView: React.FC<StandardViewProps> = ({ ...@@ -25,7 +25,7 @@ const StandardView: React.FC<StandardViewProps> = ({
<div id="wrapper" className={isToggled ? "toggled" : ""}> <div id="wrapper" className={isToggled ? "toggled" : ""}>
<LeftBar /> <LeftBar />
<Switch> <Switch>
<Route exact path="/" render={() => <Redirect to="/courses" />} /> <Route exact path="/" render={() => <Redirect to="/modules" />} />
{topBarRoutes} {topBarRoutes}
</Switch> </Switch>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment