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

Add more space at bottom and change overview title

parent dd7d3d5c
No related branches found
No related tags found
No related merge requests found
...@@ -13,7 +13,7 @@ import Card from "react-bootstrap/Card"; ...@@ -13,7 +13,7 @@ import Card from "react-bootstrap/Card";
import Row from "react-bootstrap/esm/Row"; import Row from "react-bootstrap/esm/Row";
import Col from "react-bootstrap/esm/Col"; import Col from "react-bootstrap/esm/Col";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faInfoCircle, faFile, faFolder, faClock, faExclamationTriangle, faCalendarPlus } from "@fortawesome/free-solid-svg-icons"; import { faInfoCircle, faFile, faFolder } from "@fortawesome/free-solid-svg-icons";
const ModuleFeedback: React.FC = () => { const ModuleFeedback: React.FC = () => {
return ( return (
......
import React from "react"; import React from "react";
import Dandruff from "components/molecules/Dandruff"; import Dandruff from "components/molecules/Dandruff";
import { useParams } from "react-router-dom";
const ModuleOverview: React.FC = () => { const ModuleOverview: React.FC = () => {
let { id } = useParams();
return ( return (
<> <>
<Dandruff heading="Overview"/> <Dandruff heading={id} />
</> </>
); );
}; };
......
import React, { useEffect, RefObject } from "react"; import React from "react";
import styles from "./style.module.scss"; import styles from "./style.module.scss";
import classNames from "classnames"; import classNames from "classnames";
......
...@@ -44,10 +44,11 @@ ...@@ -44,10 +44,11 @@
#wrapper.toggledLeft #sidenav-overlay { #wrapper.toggledLeft #sidenav-overlay {
visibility: visible; visibility: visible;
background-color: rgba(0, 0, 0, 0.3); background-color: rgba(0, 0, 0, 0.3);
} }
} }
.pageContainer { .pageContainer {
padding-top: 1.875rem; padding-top: 1.875rem;
margin-bottom: 4.5rem; margin-bottom: 10rem !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