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

Merge branch 'master' of gitlab.doc.ic.ac.uk:edtech/scientia

parents 95b0da12 fa7f53f7
No related branches found
No related tags found
No related merge requests found
...@@ -10,4 +10,4 @@ body { ...@@ -10,4 +10,4 @@ body {
code { code {
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace; monospace;
} }
\ No newline at end of file
...@@ -5,7 +5,7 @@ import TopBar from "./organisms/TopBar"; ...@@ -5,7 +5,7 @@ import TopBar from "./organisms/TopBar";
import BottomBar from "./organisms/BottomBar"; import BottomBar from "./organisms/BottomBar";
import { import {
faBookOpen, faBookOpen,
faEllipsisH, faHome,
faCalendarWeek, faCalendarWeek,
faChalkboardTeacher, faChalkboardTeacher,
} from "@fortawesome/free-solid-svg-icons"; } from "@fortawesome/free-solid-svg-icons";
...@@ -30,10 +30,10 @@ class App extends React.Component<{}, MyState> { ...@@ -30,10 +30,10 @@ class App extends React.Component<{}, MyState> {
render() { render() {
const horizontalBarPages = [ const horizontalBarPages = [
{ name: "Home", path: "/home", icon: faHome },
{ name: "Modules", path: "/modules", 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 },
]; ];
return ( return (
......
@import "assets/scss/custom";
@media (max-width: 992px) { @media (max-width: 992px) {
.btn:active, .btn:active,
.btn:global(.active) { .btn:global(.active) {
...@@ -28,5 +29,11 @@ ...@@ -28,5 +29,11 @@
.btn:hover { .btn:hover {
border: 0px; border: 0px;
background-color: #ced4da; background-color: #ced4da;
color: #000;
}
.btn:active:hover,
.btn:global(.active):hover {
background-color: $gray-900 !important;
} }
} }
\ No newline at end of file
...@@ -25,4 +25,9 @@ ...@@ -25,4 +25,9 @@
font-weight: 500 !important; font-weight: 500 !important;
color: $white !important; color: $white !important;
} }
}
\ No newline at end of file .pageButton:active:hover,
.pageButton:global(.active):hover {
background-color: $gray-900 !important;
}
}
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